Uses of Interface
com.vaadin.data.util.sqlcontainer.connection.JDBCConnectionPool
-
Packages that use JDBCConnectionPool Package Description com.vaadin.data.util.sqlcontainer.connection com.vaadin.data.util.sqlcontainer.query -
-
Uses of JDBCConnectionPool in com.vaadin.data.util.sqlcontainer.connection
Classes in com.vaadin.data.util.sqlcontainer.connection that implement JDBCConnectionPool Modifier and Type Class Description class
J2EEConnectionPool
class
SimpleJDBCConnectionPool
Simple implementation of the JDBCConnectionPool interface. -
Uses of JDBCConnectionPool in com.vaadin.data.util.sqlcontainer.query
Constructors in com.vaadin.data.util.sqlcontainer.query with parameters of type JDBCConnectionPool Constructor Description FreeformQuery(String queryString, JDBCConnectionPool connectionPool, String... primaryKeyColumns)
Creates a new freeform query delegate to be used with theSQLContainer
.FreeformQuery(String queryString, List<String> primaryKeyColumns, JDBCConnectionPool connectionPool)
Deprecated.As of 6.7, @seeFreeformQuery(String, JDBCConnectionPool, String...)
TableQuery(String tableName, JDBCConnectionPool connectionPool)
Creates a new TableQuery using the given connection pool and table name to fetch the data from.TableQuery(String tableName, JDBCConnectionPool connectionPool, SQLGenerator sqlGenerator)
Creates a new TableQuery using the given connection pool, SQL generator and table name to fetch the data from.TableQuery(String catalogName, String schemaName, String tableName, JDBCConnectionPool connectionPool, SQLGenerator sqlGenerator)
Creates a new TableQuery using the given connection pool, SQL generator and table name to fetch the data from.TableQuery(String catalogName, String schemaName, String tableName, JDBCConnectionPool connectionPool, SQLGenerator sqlGenerator, boolean escapeNames)
Creates a new TableQuery using the given connection pool, SQL generator and table name to fetch the data from.
-