All Methods Static Methods Instance Methods Abstract Methods Concrete Methods
| Modifier and Type |
Method and Description |
abstract void |
checkSQLSyntax(Connection con,
String sql,
List<Argument> params) |
static AbstractRDBMSAdapter |
getAdapterByDbUri(String dburi,
String customDriver) |
protected Class |
getColumnType(int DATA_TYPE,
String TYPE_NAME,
int NULLABLE)
Maps the SQL Column type to java class.
|
List<String> |
getSchemas(Connection con,
String prefix) |
List<String> |
getSchemas(Connection con,
String catalog,
String prefix) |
abstract List<Argument> |
getSqlQueryType(Connection con,
String sql,
List<Argument> params)
Let's the db analyze an SQL query and throws an exception or returns a
map containing the names and types of the resulting rows
|
List<Argument> |
getStoredProcedureParameters(Connection con,
String name) |
List<Argument> |
getStoredProcedureParameters(Connection con,
String catalog,
String schema,
String name) |
List<AbstractRDBMSAdapter.Procedure> |
getStoredProcedures(Connection con,
String prefix) |
List<AbstractRDBMSAdapter.Procedure> |
getStoredProcedures(Connection con,
String catalog,
String schema,
String prefix) |
List<Argument> |
getTableColumns(Connection con,
String name,
String prefix) |
protected List<Argument> |
getTableColumns(Connection con,
String catalog,
String schema,
String name,
String prefix) |
List<String> |
getTables(Connection db,
String prefix) |
List<String> |
getTables(Connection db,
String catalog,
String schema,
String prefix) |
protected void |
tryToLoadDriver(String className) |