blob: 2ea151c57894652cbbe81eedb5eae4e2fa1474ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.data.util.sqlcontainer.query;
import com.vaadin.data.util.sqlcontainer.query.generator.StatementHelper;
/**
* FreeformStatementDelegate is an extension to FreeformQueryDelegate that
* provides definitions for methods that produce StatementHelper objects instead
* of basic query strings. This allows the FreeformQuery query delegate to use
* PreparedStatements instead of regular Statement when accessing the database.
*
* Due to the injection protection and other benefits of prepared statements, it
* is advisable to implement this interface instead of the FreeformQueryDelegate
* whenever possible.
*/
public interface FreeformStatementDelegate extends FreeformQueryDelegate {
/**
* Should return a new instance of StatementHelper that contains the query
* string and parameter values required to create a PreparedStatement. This
* method is responsible for gluing together the select query from the
* filters and the order by conditions if these are supported.
*
* @param offset
* the first record (row) to fetch.
* @param pagelength
* the number of records (rows) to fetch. 0 means all records
* starting from offset.
*/
public StatementHelper getQueryStatement(int offset, int limit)
throws UnsupportedOperationException;
/**
* 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. Row count should be fetched using
* filters that are currently set to the QueryDelegate.
*/
public StatementHelper getCountStatement()
throws UnsupportedOperationException;
/**
* 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. This is useful for
* cases when the default logic in said method is not enough to support more
* complex free form queries.
*
* @param keys
* the values of the primary keys
* @throws UnsupportedOperationException
* to use the default logic in FreeformQuery
*/
public StatementHelper getContainsRowQueryStatement(Object... keys)
throws UnsupportedOperationException;
}
|