Uses of Class
com.vaadin.v7.data.util.sqlcontainer.query.generator.StatementHelper
-
-
Uses of StatementHelper in com.vaadin.v7.data.util.sqlcontainer.query
Methods in com.vaadin.v7.data.util.sqlcontainer.query that return StatementHelper Modifier and Type Method Description StatementHelperFreeformStatementDelegate. getContainsRowQueryStatement(Object... keys)Deprecated.Should return a new instance of StatementHelper that contains the query string and parameter values required to create a PreparedStatement used by the FreeformQuery.containsRowWithKeys() method.StatementHelperFreeformStatementDelegate. getCountStatement()Deprecated.Should return a new instance of StatementHelper that contains the query string and parameter values required to create a PreparedStatement that will fetch the row count from the DB.StatementHelperFreeformStatementDelegate. getQueryStatement(int offset, int limit)Deprecated.Should return a new instance of StatementHelper that contains the query string and parameter values required to create a PreparedStatement. -
Uses of StatementHelper in com.vaadin.v7.data.util.sqlcontainer.query.generator
Methods in com.vaadin.v7.data.util.sqlcontainer.query.generator that return StatementHelper Modifier and Type Method Description StatementHelperDefaultSQLGenerator. generateDeleteQuery(String tableName, List<String> primaryKeyColumns, String versionColumn, RowItem item)Deprecated.StatementHelperSQLGenerator. generateDeleteQuery(String tableName, List<String> primaryKeyColumns, String versionColumn, RowItem item)Deprecated.Generates a DELETE query for deleting data related to the given RowItem from the database.StatementHelperDefaultSQLGenerator. generateInsertQuery(String tableName, RowItem item)Deprecated.StatementHelperSQLGenerator. generateInsertQuery(String tableName, RowItem item)Deprecated.Generates an INSERT query for inserting a new row with the provided values.StatementHelperDefaultSQLGenerator. generateSelectQuery(String tableName, List<Container.Filter> filters, List<OrderBy> orderBys, int offset, int pagelength, String toSelect)Deprecated.StatementHelperMSSQLGenerator. generateSelectQuery(String tableName, List<Container.Filter> filters, List<OrderBy> orderBys, int offset, int pagelength, String toSelect)Deprecated.StatementHelperOracleGenerator. generateSelectQuery(String tableName, List<Container.Filter> filters, List<OrderBy> orderBys, int offset, int pagelength, String toSelect)Deprecated.StatementHelperSQLGenerator. generateSelectQuery(String tableName, List<Container.Filter> filters, List<OrderBy> orderBys, int offset, int pagelength, String toSelect)Deprecated.Generates a SELECT query with the provided parameters.StatementHelperDefaultSQLGenerator. generateUpdateQuery(String tableName, RowItem item)Deprecated.StatementHelperSQLGenerator. generateUpdateQuery(String tableName, RowItem item)Deprecated.Generates an UPDATE query with the provided parameters.protected StatementHelperDefaultSQLGenerator. getStatementHelper()Deprecated.Returns the statement helper for the generator.Constructor parameters in com.vaadin.v7.data.util.sqlcontainer.query.generator with type arguments of type StatementHelper Constructor Description DefaultSQLGenerator(Class<? extends StatementHelper> statementHelperClazz)Deprecated.Create a new DefaultSqlGenerator instance that uses the given implementation ofStatementHelper.DefaultSQLGenerator(String quoteStart, String quoteEnd, Class<? extends StatementHelper> statementHelperClazz)Deprecated.Same asDefaultSQLGenerator(String, String)but with support for customStatementHelperimplementation.OracleGenerator(Class<? extends StatementHelper> statementHelperClazz)Deprecated.OracleGenerator(String quoteStart, String quoteEnd, Class<? extends StatementHelper> statementHelperClazz)Deprecated. -
Uses of StatementHelper in com.vaadin.v7.data.util.sqlcontainer.query.generator.filter
-