Hello
Does JDBI support PreparedStatements ? I am using HikariConnection pool with JDBI and my database is MySQL. While browsing the code i came across
return new CachingStatementBuilder(new DefaultStatementBuilder());
While i do see that in CachingStatementBuilder we check if the statement is in the cache or not, but i also see @Deprecated on top.
So if i run my queries like this
h.execute("insert into something (id, name) values (?, ?)", 1, "Brian");
instead of using parameter names ( :id and :name ), would i still be able to use PreparedStatement caching provided by underlying JDBC driver ?