Uses of Interface
io.github.pigaut.sql.DatabaseStatement
Packages that use DatabaseStatement
Package
Description
-
Uses of DatabaseStatement in io.github.pigaut.sql
Methods in io.github.pigaut.sql that return DatabaseStatementModifier and TypeMethodDescriptionDatabaseStatement.addBatch()Adds a batch operation to the statement.DatabaseStatement.addOption(StatementOption option)Adds an option to the statement.Database.createStatement(String sql)Creates a statement for this database with the given sqlReplaces a placeholder in the SQL statement with a specific value.DatabaseStatement.withNullParameter()Sets a parameter in the statement as NULL.DatabaseStatement.withParameter(boolean value)Sets a parameter in the statement as a boolean value.DatabaseStatement.withParameter(byte value)Sets a parameter in the statement as a byte value.DatabaseStatement.withParameter(double value)Sets a parameter in the statement as a double value.DatabaseStatement.withParameter(float value)Sets a parameter in the statement as a float value.DatabaseStatement.withParameter(int value)Sets a parameter in the statement as an integer value.DatabaseStatement.withParameter(long value)Sets a parameter in the statement as a long value.DatabaseStatement.withParameter(short value)Sets a parameter in the statement as a short value.DatabaseStatement.withParameter(InputStream inputStream)DatabaseStatement.withParameter(Object object)Sets a parameter in the statement with a specified object.DatabaseStatement.withParameter(Object object, int sqlType)Sets a parameter in the statement with a specified object and SQL type.DatabaseStatement.withParameter(String value)Sets a parameter in the statement as a string value. -
Uses of DatabaseStatement in io.github.pigaut.sql.database
Methods in io.github.pigaut.sql.database that return DatabaseStatement -
Uses of DatabaseStatement in io.github.pigaut.sql.database.statement
Classes in io.github.pigaut.sql.database.statement that implement DatabaseStatementMethods in io.github.pigaut.sql.database.statement that return DatabaseStatementModifier and TypeMethodDescriptionSimpleDatabaseStatement.addBatch()SimpleDatabaseStatement.addOption(StatementOption option)SimpleDatabaseStatement.withNullParameter()SimpleDatabaseStatement.withParameter(boolean value)SimpleDatabaseStatement.withParameter(byte value)SimpleDatabaseStatement.withParameter(double value)SimpleDatabaseStatement.withParameter(float value)SimpleDatabaseStatement.withParameter(int value)SimpleDatabaseStatement.withParameter(long value)SimpleDatabaseStatement.withParameter(short value)SimpleDatabaseStatement.withParameter(InputStream inputStream)SimpleDatabaseStatement.withParameter(Object object)SimpleDatabaseStatement.withParameter(Object object, int sqlType)SimpleDatabaseStatement.withParameter(String value)