Uses of Class
org.knowm.yank.exceptions.SQLStatementNotFoundException
Packages that use SQLStatementNotFoundException
-
Uses of SQLStatementNotFoundException in org.knowm.yank
Methods in org.knowm.yank that throw SQLStatementNotFoundExceptionModifier and TypeMethodDescriptionstatic int[]Yank.executeBatchSQLKey(String sqlKey, Object[][] params) Batch executes the given INSERT, UPDATE, DELETE, REPLACE or UPSERT SQL statement matching the sqlKey String in a properties file loaded via Yank.addSQLStatements(...) using the default connection pool.static int[]Yank.executeBatchSQLKey(String poolName, String sqlKey, Object[][] params) Batch executes the given INSERT, UPDATE, DELETE, REPLACE or UPSERT SQL statement matching the sqlKey String in a properties file loaded via Yank.addSQLStatements(...).static intYank.executeSQLKey(String sqlKey, Object[] params) Executes the given INSERT, UPDATE, DELETE, REPLACE or UPSERT SQL statement matching the sqlKey String in a properties file loaded via Yank.addSQLStatements(...) using the default connection pool.static intYank.executeSQLKey(String poolName, String sqlKey, Object[] params) Executes the given INSERT, UPDATE, DELETE, REPLACE or UPSERT SQL statement matching the sqlKey String in a properties file loaded via Yank.addSQLStatements(...).static LongYank.insertSQLKey(String sqlKey, Object[] params) Executes a given INSERT SQL prepared statement matching the sqlKey String in a properties file loaded via Yank.addSQLStatements(...) using the default connection pool.static LongYank.insertSQLKey(String poolName, String sqlKey, Object[] params) Executes a given INSERT SQL prepared statement matching the sqlKey String in a properties file loaded via Yank.addSQLStatements(...).static <T> List<T>Yank.queryBeanListSQLKey(String sqlKey, Class<T> beanType, Object[] params) Return a List of Beans given a SQL Key using an SQL statement matching the sqlKey String in a properties file loaded via Yank.addSQLStatements(...) using the default connection pool.static <T> List<T>Yank.queryBeanListSQLKey(String poolName, String sqlKey, Class<T> beanType, Object[] params) Return a List of Beans given a SQL Key using an SQL statement matching the sqlKey String in a properties file loaded via Yank.addSQLStatements(...).static <T> TYank.queryBeanSQLKey(String sqlKey, Class<T> beanType, Object[] params) Return just one Bean given a SQL Key using an SQL statement matching the sqlKey String in a properties file loaded via Yank.addSQLStatements(...).static <T> TYank.queryBeanSQLKey(String poolName, String sqlKey, Class<T> beanType, Object[] params) Return just one Bean given a SQL Key using an SQL statement matching the sqlKey String in a properties file loaded via Yank.addSQLStatements(...).static <T> List<T>Yank.queryColumnSQLKey(String sqlKey, String columnName, Class<T> columnType, Object[] params) Return a List of Objects from a single table column given a SQL Key using an SQL statement matching the sqlKey String in a properties file loaded via Yank.addSQLStatements(...) using the default connection pool.static <T> List<T>Yank.queryColumnSQLKey(String poolName, String sqlKey, String columnName, Class<T> columnType, Object[] params) Return a List of Objects from a single table column given a SQL Key using an SQL statement matching the sqlKey String in a properties file loaded via Yank.addSQLStatements(...).Yank.queryObjectArraysSQLKey(String sqlKey, Object[] params) Return a List of generic Object[]s given a SQL Key using an SQL statement matching the sqlKey String in a properties file loaded via Yank.addSQLStatements(...) using the default connection pool.Yank.queryObjectArraysSQLKey(String poolName, String sqlKey, Object[] params) Return a List of generic Object[]s given a SQL Key using an SQL statement matching the sqlKey String in a properties file loaded via Yank.addSQLStatements(...).static <T> TYank.queryScalar(String sql, Class<T> scalarType, Object[] params) Return just one scalar given a an SQL statement using the default connection pool.static <T> TYank.queryScalar(String poolName, String sql, Class<T> scalarType, Object[] params) Return just one scalar given a an SQL statementstatic <T> TYank.queryScalarSQLKey(String sqlKey, Class<T> scalarType, Object[] params) Return just one scalar given a SQL Key using an SQL statement matching the sqlKey String in a properties file loaded via Yank.addSQLStatements(...) using the default connection pool.static <T> TYank.queryScalarSQLKey(String poolName, String sqlKey, Class<T> scalarType, Object[] params) Return just one scalar given a SQL Key using an SQL statement matching the sqlKey String in a properties file loaded via Yank.addSQLStatements(...).