Package cronapi.jdbc
Interface DatabaseMetadata
-
- All Known Implementing Classes:
FirebirdMetadata,MSSQLMetadata,MySQLMetadata,OracleMetadata,PostegreSQLMetadata,SQLAnsiMetadata
public interface DatabaseMetadata
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringcount(net.sf.jsqlparser.statement.Statement statement, Connection connection)StringgetDeleteSQL(String mainTable, String alias, String columns, String values, String where)org.apache.openjpa.jdbc.sql.DBDictionarygetDictionary(Connection connection)org.apache.olingo.odata2.jpa.processor.core.ExpressionProvidergetExpressionProvider()Map<String,Object>getGenerated(org.apache.olingo.odata2.api.edm.EdmEntityType entity, PreparedStatement ps, Connection connection)StringgetInsertSQL(String mainTable, String alias, String columns, String values, String where)StringgetUpdateSQL(String mainTable, String alias, String columns, String values, String where)Stringlimit(net.sf.jsqlparser.statement.Statement statement, Connection connection, Integer top, Integer skip)
-
-
-
Method Detail
-
limit
String limit(net.sf.jsqlparser.statement.Statement statement, Connection connection, Integer top, Integer skip) throws Exception
- Throws:
Exception
-
count
String count(net.sf.jsqlparser.statement.Statement statement, Connection connection) throws Exception
- Throws:
Exception
-
getDictionary
org.apache.openjpa.jdbc.sql.DBDictionary getDictionary(Connection connection) throws SQLException
- Throws:
SQLException
-
getGenerated
Map<String,Object> getGenerated(org.apache.olingo.odata2.api.edm.EdmEntityType entity, PreparedStatement ps, Connection connection) throws Exception
- Throws:
Exception
-
getExpressionProvider
org.apache.olingo.odata2.jpa.processor.core.ExpressionProvider getExpressionProvider()
-
getInsertSQL
String getInsertSQL(String mainTable, String alias, String columns, String values, String where)
-
getUpdateSQL
String getUpdateSQL(String mainTable, String alias, String columns, String values, String where)
-
-