120121122123124125126
return new TableDescriptorResultSet(data); } @Override public ResultSet getColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern) throws SQLException { return new EmptyResultSet(); }
143144145146147148149
} } @Override public ResultSet getSuperTables(String catalog, String schemaPattern, String tableNamePattern) throws SQLException { return new EmptyResultSet(); }
148149150151152153154
return new EmptyResultSet(); } @Override public ResultSet getProcedures(String catalog, String schemaPattern, String procedureNamePattern) throws SQLException { return new EmptyResultSet(); }
161162163164165166167
public int getDefaultTransactionIsolation() throws SQLException { return Connection.TRANSACTION_NONE; } public ResultSet getTableTypes() throws SQLException { return new EmptyResultSet(); }
191192193194195196197
return "0.1"; } @Override public ResultSet getCatalogs() throws SQLException { return new EmptyResultSet(); }
196197198199200201202
return new EmptyResultSet(); } @Override public ResultSet getClientInfoProperties() throws SQLException { return new EmptyResultSet(); }
376377378379380381382
return "procedure"; } @Override public ResultSet getSchemas(String catalog, String schemaPattern) throws SQLException { return new EmptyResultSet(); }
391392393394395396397
return "\\"; } @Override public ResultSet getTypeInfo() throws SQLException { return new EmptyResultSet(); }
406407408409410411412
return username; } @Override public ResultSet getUDTs(String catalog, String schemaPattern, String typeNamePattern, int[] types) throws SQLException { return new EmptyResultSet(); }