Uses of Class
io.vertigo.database.sql.statement.SqlStatement
-
Packages that use SqlStatement Package Description io.vertigo.database.impl.sql io.vertigo.database.sql io.vertigo.database.sql.statement -
-
Uses of SqlStatement in io.vertigo.database.impl.sql
Methods in io.vertigo.database.impl.sql with parameters of type SqlStatement Modifier and Type Method Description OptionalInt
SqlManagerImpl. executeBatch(SqlStatement sqlStatement, Map<Class,io.vertigo.core.lang.BasicTypeAdapter> basicTypeAdapters, SqlConnection connection)
Executes the batch .<O> List<O>
SqlManagerImpl. executeQuery(SqlStatement sqlStatement, Class<O> dataType, Map<Class,io.vertigo.core.lang.BasicTypeAdapter> basicTypeAdapters, Integer limit, SqlConnection connection)
Executes a sql query returning a listint
SqlManagerImpl. executeUpdate(SqlStatement sqlStatement, Map<Class,io.vertigo.core.lang.BasicTypeAdapter> basicTypeAdapters, SqlConnection connection)
Executes a sql query returning the number of modified rows.<O> io.vertigo.core.lang.Tuple<Integer,O>
SqlManagerImpl. executeUpdateWithGeneratedKey(SqlStatement sqlStatement, SqlDialect.GenerationMode generationMode, String columnName, Class<O> dataType, Map<Class,io.vertigo.core.lang.BasicTypeAdapter> basicTypeAdapters, SqlConnection connection)
Executes a sql query returning the number of modified rows. -
Uses of SqlStatement in io.vertigo.database.sql
Methods in io.vertigo.database.sql with parameters of type SqlStatement Modifier and Type Method Description OptionalInt
SqlManager. executeBatch(SqlStatement sqlStatement, Map<Class,io.vertigo.core.lang.BasicTypeAdapter> basicTypeAdapters, SqlConnection connection)
Executes the batch .<O> List<O>
SqlManager. executeQuery(SqlStatement sqlStatement, Class<O> dataType, Map<Class,io.vertigo.core.lang.BasicTypeAdapter> basicTypeAdapters, Integer limit, SqlConnection connection)
Executes a sql query returning a listint
SqlManager. executeUpdate(SqlStatement sqlStatement, Map<Class,io.vertigo.core.lang.BasicTypeAdapter> basicTypeAdapters, SqlConnection connection)
Executes a sql query returning the number of modified rows.<O> io.vertigo.core.lang.Tuple<Integer,O>
SqlManager. executeUpdateWithGeneratedKey(SqlStatement sqlStatement, SqlDialect.GenerationMode generationMode, String columnName, Class<O> dataType, Map<Class,io.vertigo.core.lang.BasicTypeAdapter> basicTypeAdapters, SqlConnection connection)
Executes a sql query returning the number of modified rows. -
Uses of SqlStatement in io.vertigo.database.sql.statement
Methods in io.vertigo.database.sql.statement that return SqlStatement Modifier and Type Method Description SqlStatement
SqlStatementBuilder. build()
-