com.vaadin.data.util.sqlcontainer.query.
Interface FreeformQueryDelegate
-
All Superinterfaces:
All Known Subinterfaces:
public interface FreeformQueryDelegate extends Serializable
-
-
Method Summary
All Methods Modifier and Type Method and Description String
getContainsRowQueryString(Object... keys)
Deprecated.
As of 6.7. ImplementFreeformStatementDelegate
instead ofFreeformQueryDelegate
String
getCountQuery()
Deprecated.
As of 6.7. ImplementFreeformStatementDelegate
instead ofFreeformQueryDelegate
String
getQueryString(int offset, int limit)
Deprecated.
As of 6.7. ImplementFreeformStatementDelegate
instead ofFreeformQueryDelegate
boolean
removeRow(Connection conn, RowItem row)
Removes the given RowItem from the database.
void
setFilters(List<Container.Filter> filters)
Sets the filters to apply when performing the SQL query.
void
setOrderBy(List<OrderBy> orderBys)
Sets the order in which to retrieve rows from the database.
int
storeRow(Connection conn, RowItem row)
Stores a row in the database.
-
-
-
Method Detail
-
getQueryString
@Deprecated String getQueryString(int offset, int limit) throws UnsupportedOperationException
Deprecated. As of 6.7. Implement
FreeformStatementDelegate
instead ofFreeformQueryDelegate
Should return the SQL query string to be performed. This method is responsible for gluing together the select query from the filters and the order by conditions if these are supported.
Parameters:
offset
- the first record (row) to fetch.pagelength
- the number of records (rows) to fetch. 0 means all records starting from offset.Throws:
-
getCountQuery
@Deprecated String getCountQuery() throws UnsupportedOperationException
Deprecated. As of 6.7. Implement
FreeformStatementDelegate
instead ofFreeformQueryDelegate
Generates and executes a query to determine the current row count from the DB. Row count will be fetched using filters that are currently set to the QueryDelegate.
Returns:
row count
Throws:
-
setFilters
void setFilters(List<Container.Filter> filters) throws UnsupportedOperationException
Sets the filters to apply when performing the SQL query. These are translated into a WHERE clause. Default filtering mode will be used.
Parameters:
filters
- The filters to apply.Throws:
UnsupportedOperationException
- if the implementation doesn't support filtering.
-
setOrderBy
void setOrderBy(List<OrderBy> orderBys) throws UnsupportedOperationException
Sets the order in which to retrieve rows from the database. The result can be ordered by zero or more columns and each column can be in ascending or descending order. These are translated into an ORDER BY clause in the SQL query.
Parameters:
orderBys
- A list of the OrderBy conditions.Throws:
UnsupportedOperationException
- if the implementation doesn't support ordering.
-
storeRow
int storeRow(Connection conn, RowItem row) throws UnsupportedOperationException, SQLException
Stores a row in the database. The implementation of this interface decides how to identify whether to store a new row or update an existing one.
Parameters:
conn
- the JDBC connection to userow
- RowItem to be stored or updated.Throws:
UnsupportedOperationException
- if the implementation is read only.
-
removeRow
boolean removeRow(Connection conn, RowItem row) throws UnsupportedOperationException, SQLException
Removes the given RowItem from the database.
Parameters:
conn
- the JDBC connection to userow
- RowItem to be removedReturns:
true on success
Throws:
-
getContainsRowQueryString
@Deprecated String getContainsRowQueryString(Object... keys) throws UnsupportedOperationException
Deprecated. As of 6.7. Implement
FreeformStatementDelegate
instead ofFreeformQueryDelegate
Generates an SQL Query string that allows the user of the FreeformQuery class to customize the query string used by the FreeformQuery.containsRowWithKeys() method. This is useful for cases when the logic in the containsRowWithKeys method is not enough to support more complex free form queries.
Parameters:
keys
- the values of the primary keysThrows:
UnsupportedOperationException
- to use the default logic in FreeformQuery
-
-