change
This commit is contained in:
parent
0e987bb9e3
commit
aeb65615f5
|
@ -483,13 +483,11 @@ public abstract class AbstractDatabaseMetaData implements DatabaseMetaData, Wrap
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public ResultSet getProcedures(String catalog, String schemaPattern, String procedureNamePattern)
|
public ResultSet getProcedures(String catalog, String schemaPattern, String procedureNamePattern) throws SQLException {
|
||||||
throws SQLException {
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public ResultSet getProcedureColumns(String catalog, String schemaPattern, String procedureNamePattern,
|
public ResultSet getProcedureColumns(String catalog, String schemaPattern, String procedureNamePattern, String columnNamePattern) throws SQLException {
|
||||||
String columnNamePattern) throws SQLException {
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -570,20 +568,22 @@ public abstract class AbstractDatabaseMetaData implements DatabaseMetaData, Wrap
|
||||||
ResultSet tables = stmt.executeQuery("show tables");
|
ResultSet tables = stmt.executeQuery("show tables");
|
||||||
while (tables.next()) {
|
while (tables.next()) {
|
||||||
TSDBResultSetRowData rowData = new TSDBResultSetRowData(10);
|
TSDBResultSetRowData rowData = new TSDBResultSetRowData(10);
|
||||||
rowData.setString(0, dbname);
|
rowData.setString(0, dbname); //table_cat
|
||||||
rowData.setString(2, tables.getString("table_name"));
|
rowData.setString(1, null); //TABLE_SCHEM
|
||||||
rowData.setString(3, "TABLE");
|
rowData.setString(2, tables.getString("table_name")); //TABLE_NAME
|
||||||
rowData.setString(4, "");
|
rowData.setString(3, "TABLE"); //TABLE_TYPE
|
||||||
|
rowData.setString(4, ""); //REMARKS
|
||||||
rowDataList.add(rowData);
|
rowDataList.add(rowData);
|
||||||
}
|
}
|
||||||
|
|
||||||
ResultSet stables = stmt.executeQuery("show stables");
|
ResultSet stables = stmt.executeQuery("show stables");
|
||||||
while (stables.next()) {
|
while (stables.next()) {
|
||||||
TSDBResultSetRowData rowData = new TSDBResultSetRowData(10);
|
TSDBResultSetRowData rowData = new TSDBResultSetRowData(10);
|
||||||
rowData.setString(0, dbname);
|
rowData.setString(0, dbname); //TABLE_CAT
|
||||||
rowData.setString(2, stables.getString("name"));
|
rowData.setString(1, null); //TABLE_SCHEM
|
||||||
rowData.setString(3, "TABLE");
|
rowData.setString(2, stables.getString("name")); //TABLE_NAME
|
||||||
rowData.setString(4, "STABLE");
|
rowData.setString(3, "TABLE"); //TABLE_TYPE
|
||||||
|
rowData.setString(4, "STABLE"); //REMARKS
|
||||||
rowDataList.add(rowData);
|
rowDataList.add(rowData);
|
||||||
}
|
}
|
||||||
resultSet.setRowDataList(rowDataList);
|
resultSet.setRowDataList(rowDataList);
|
||||||
|
@ -624,6 +624,214 @@ public abstract class AbstractDatabaseMetaData implements DatabaseMetaData, Wrap
|
||||||
|
|
||||||
public abstract ResultSet getColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern) throws SQLException;
|
public abstract ResultSet getColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern) throws SQLException;
|
||||||
|
|
||||||
|
protected ResultSet getColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern, Connection conn) {
|
||||||
|
try (Statement stmt = conn.createStatement()) {
|
||||||
|
if (catalog == null || catalog.isEmpty())
|
||||||
|
return null;
|
||||||
|
|
||||||
|
ResultSet databases = stmt.executeQuery("show databases");
|
||||||
|
String dbname = null;
|
||||||
|
while (databases.next()) {
|
||||||
|
dbname = databases.getString("name");
|
||||||
|
if (dbname.equalsIgnoreCase(catalog))
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
databases.close();
|
||||||
|
if (dbname == null)
|
||||||
|
return null;
|
||||||
|
|
||||||
|
stmt.execute("use " + dbname);
|
||||||
|
DatabaseMetaDataResultSet resultSet = new DatabaseMetaDataResultSet();
|
||||||
|
// set up ColumnMetaDataList
|
||||||
|
|
||||||
|
List<ColumnMetaData> columnMetaDataList = new ArrayList<>();
|
||||||
|
// TABLE_CAT
|
||||||
|
ColumnMetaData col1 = new ColumnMetaData();
|
||||||
|
col1.setColIndex(1);
|
||||||
|
col1.setColName("TABLE_CAT");
|
||||||
|
col1.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
||||||
|
columnMetaDataList.add(col1);
|
||||||
|
// TABLE_SCHEM
|
||||||
|
ColumnMetaData col2 = new ColumnMetaData();
|
||||||
|
col2.setColIndex(2);
|
||||||
|
col2.setColName("TABLE_SCHEM");
|
||||||
|
col2.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
||||||
|
columnMetaDataList.add(col2);
|
||||||
|
// TABLE_NAME
|
||||||
|
ColumnMetaData col3 = new ColumnMetaData();
|
||||||
|
col3.setColIndex(3);
|
||||||
|
col3.setColName("TABLE_NAME");
|
||||||
|
col3.setColSize(193);
|
||||||
|
col3.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
||||||
|
columnMetaDataList.add(col3);
|
||||||
|
// COLUMN_NAME
|
||||||
|
ColumnMetaData col4 = new ColumnMetaData();
|
||||||
|
col4.setColIndex(4);
|
||||||
|
col4.setColName("COLUMN_NAME");
|
||||||
|
col4.setColSize(65);
|
||||||
|
col4.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
||||||
|
columnMetaDataList.add(col4);
|
||||||
|
// DATA_TYPE
|
||||||
|
ColumnMetaData col5 = new ColumnMetaData();
|
||||||
|
col5.setColIndex(5);
|
||||||
|
col5.setColName("DATA_TYPE");
|
||||||
|
col5.setColType(TSDBConstants.TSDB_DATA_TYPE_INT);
|
||||||
|
columnMetaDataList.add(col5);
|
||||||
|
// TYPE_NAME
|
||||||
|
ColumnMetaData col6 = new ColumnMetaData();
|
||||||
|
col6.setColIndex(6);
|
||||||
|
col6.setColName("TYPE_NAME");
|
||||||
|
col6.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
||||||
|
columnMetaDataList.add(col6);
|
||||||
|
// COLUMN_SIZE
|
||||||
|
ColumnMetaData col7 = new ColumnMetaData();
|
||||||
|
col7.setColIndex(7);
|
||||||
|
col7.setColName("COLUMN_SIZE");
|
||||||
|
col7.setColType(TSDBConstants.TSDB_DATA_TYPE_INT);
|
||||||
|
columnMetaDataList.add(col7);
|
||||||
|
// BUFFER_LENGTH, not used
|
||||||
|
ColumnMetaData col8 = new ColumnMetaData();
|
||||||
|
col8.setColIndex(8);
|
||||||
|
col8.setColName("BUFFER_LENGTH");
|
||||||
|
columnMetaDataList.add(col8);
|
||||||
|
// DECIMAL_DIGITS
|
||||||
|
ColumnMetaData col9 = new ColumnMetaData();
|
||||||
|
col9.setColIndex(9);
|
||||||
|
col9.setColName("DECIMAL_DIGITS");
|
||||||
|
col9.setColType(TSDBConstants.TSDB_DATA_TYPE_INT);
|
||||||
|
columnMetaDataList.add(col9);
|
||||||
|
// add NUM_PREC_RADIX
|
||||||
|
ColumnMetaData col10 = new ColumnMetaData();
|
||||||
|
col10.setColIndex(10);
|
||||||
|
col10.setColName("NUM_PREC_RADIX");
|
||||||
|
col10.setColType(TSDBConstants.TSDB_DATA_TYPE_INT);
|
||||||
|
columnMetaDataList.add(col10);
|
||||||
|
// NULLABLE
|
||||||
|
ColumnMetaData col11 = new ColumnMetaData();
|
||||||
|
col11.setColIndex(11);
|
||||||
|
col11.setColName("NULLABLE");
|
||||||
|
col11.setColType(TSDBConstants.TSDB_DATA_TYPE_INT);
|
||||||
|
columnMetaDataList.add(col11);
|
||||||
|
// REMARKS
|
||||||
|
ColumnMetaData col12 = new ColumnMetaData();
|
||||||
|
col12.setColIndex(12);
|
||||||
|
col12.setColName("REMARKS");
|
||||||
|
col12.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
||||||
|
columnMetaDataList.add(col12);
|
||||||
|
// COLUMN_DEF
|
||||||
|
ColumnMetaData col13 = new ColumnMetaData();
|
||||||
|
col13.setColIndex(13);
|
||||||
|
col13.setColName("COLUMN_DEF");
|
||||||
|
col13.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
||||||
|
columnMetaDataList.add(col13);
|
||||||
|
//SQL_DATA_TYPE
|
||||||
|
ColumnMetaData col14 = new ColumnMetaData();
|
||||||
|
col14.setColIndex(14);
|
||||||
|
col14.setColName("SQL_DATA_TYPE");
|
||||||
|
col14.setColType(TSDBConstants.TSDB_DATA_TYPE_INT);
|
||||||
|
columnMetaDataList.add(col14);
|
||||||
|
//SQL_DATETIME_SUB
|
||||||
|
ColumnMetaData col15 = new ColumnMetaData();
|
||||||
|
col15.setColIndex(15);
|
||||||
|
col15.setColName("SQL_DATETIME_SUB");
|
||||||
|
col15.setColType(TSDBConstants.TSDB_DATA_TYPE_INT);
|
||||||
|
columnMetaDataList.add(col15);
|
||||||
|
//CHAR_OCTET_LENGTH
|
||||||
|
ColumnMetaData col16 = new ColumnMetaData();
|
||||||
|
col16.setColIndex(16);
|
||||||
|
col16.setColName("CHAR_OCTET_LENGTH");
|
||||||
|
col16.setColType(TSDBConstants.TSDB_DATA_TYPE_INT);
|
||||||
|
columnMetaDataList.add(col16);
|
||||||
|
//ORDINAL_POSITION
|
||||||
|
ColumnMetaData col17 = new ColumnMetaData();
|
||||||
|
col17.setColIndex(17);
|
||||||
|
col17.setColName("ORDINAL_POSITION");
|
||||||
|
col17.setColType(TSDBConstants.TSDB_DATA_TYPE_INT);
|
||||||
|
columnMetaDataList.add(col17);
|
||||||
|
// IS_NULLABLE
|
||||||
|
ColumnMetaData col18 = new ColumnMetaData();
|
||||||
|
col18.setColIndex(18);
|
||||||
|
col18.setColName("IS_NULLABLE");
|
||||||
|
col18.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
||||||
|
columnMetaDataList.add(col18);
|
||||||
|
//SCOPE_CATALOG
|
||||||
|
ColumnMetaData col19 = new ColumnMetaData();
|
||||||
|
col19.setColIndex(19);
|
||||||
|
col19.setColName("SCOPE_CATALOG");
|
||||||
|
col19.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
||||||
|
columnMetaDataList.add(col19);
|
||||||
|
//SCOPE_SCHEMA
|
||||||
|
ColumnMetaData col20 = new ColumnMetaData();
|
||||||
|
col20.setColIndex(20);
|
||||||
|
col20.setColName("SCOPE_SCHEMA");
|
||||||
|
col20.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
||||||
|
columnMetaDataList.add(col20);
|
||||||
|
//SCOPE_TABLE
|
||||||
|
ColumnMetaData col21 = new ColumnMetaData();
|
||||||
|
col21.setColIndex(21);
|
||||||
|
col21.setColName("SCOPE_TABLE");
|
||||||
|
col21.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
||||||
|
columnMetaDataList.add(col21);
|
||||||
|
//SOURCE_DATA_TYPE
|
||||||
|
ColumnMetaData col22 = new ColumnMetaData();
|
||||||
|
col22.setColIndex(22);
|
||||||
|
col22.setColName("SOURCE_DATA_TYPE");
|
||||||
|
col22.setColType(TSDBConstants.TSDB_DATA_TYPE_SMALLINT);
|
||||||
|
columnMetaDataList.add(col22);
|
||||||
|
//IS_AUTOINCREMENT
|
||||||
|
ColumnMetaData col23 = new ColumnMetaData();
|
||||||
|
col23.setColIndex(23);
|
||||||
|
col23.setColName("IS_AUTOINCREMENT");
|
||||||
|
col23.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
||||||
|
columnMetaDataList.add(col23);
|
||||||
|
//IS_GENERATEDCOLUMN
|
||||||
|
ColumnMetaData col24 = new ColumnMetaData();
|
||||||
|
col24.setColIndex(24);
|
||||||
|
col24.setColName("IS_GENERATEDCOLUMN");
|
||||||
|
col24.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
||||||
|
columnMetaDataList.add(col24);
|
||||||
|
|
||||||
|
resultSet.setColumnMetaDataList(columnMetaDataList);
|
||||||
|
// set up rowDataList
|
||||||
|
ResultSet rs = stmt.executeQuery("describe " + dbname + "." + tableNamePattern);
|
||||||
|
List<TSDBResultSetRowData> rowDataList = new ArrayList<>();
|
||||||
|
int index = 0;
|
||||||
|
while (rs.next()) {
|
||||||
|
TSDBResultSetRowData rowData = new TSDBResultSetRowData(24);
|
||||||
|
// set TABLE_CAT
|
||||||
|
rowData.setString(0, dbname);
|
||||||
|
// set TABLE_NAME
|
||||||
|
rowData.setString(2, tableNamePattern);
|
||||||
|
// set COLUMN_NAME
|
||||||
|
rowData.setString(3, rs.getString("Field"));
|
||||||
|
// set DATA_TYPE
|
||||||
|
String typeName = rs.getString("Type");
|
||||||
|
rowData.setInt(4, getDataType(typeName));
|
||||||
|
// set TYPE_NAME
|
||||||
|
rowData.setString(5, typeName);
|
||||||
|
// set COLUMN_SIZE
|
||||||
|
int length = rs.getInt("Length");
|
||||||
|
rowData.setInt(6, getColumnSize(typeName, length));
|
||||||
|
// set DECIMAL_DIGITS
|
||||||
|
rowData.setInt(8, getDecimalDigits(typeName));
|
||||||
|
// set NUM_PREC_RADIX
|
||||||
|
rowData.setInt(9, 10);
|
||||||
|
// set NULLABLE
|
||||||
|
rowData.setInt(10, getNullable(index, typeName));
|
||||||
|
// set REMARKS
|
||||||
|
rowData.setString(11, rs.getString("Note"));
|
||||||
|
rowDataList.add(rowData);
|
||||||
|
index++;
|
||||||
|
}
|
||||||
|
resultSet.setRowDataList(rowDataList);
|
||||||
|
return resultSet;
|
||||||
|
|
||||||
|
} catch (SQLException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
protected int getNullable(int index, String typeName) {
|
protected int getNullable(int index, String typeName) {
|
||||||
if (index == 0 && "TIMESTAMP".equals(typeName))
|
if (index == 0 && "TIMESTAMP".equals(typeName))
|
||||||
return DatabaseMetaData.columnNoNulls;
|
return DatabaseMetaData.columnNoNulls;
|
||||||
|
@ -634,7 +842,6 @@ public abstract class AbstractDatabaseMetaData implements DatabaseMetaData, Wrap
|
||||||
switch (typeName) {
|
switch (typeName) {
|
||||||
case "TIMESTAMP":
|
case "TIMESTAMP":
|
||||||
return 23;
|
return 23;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -926,138 +1133,6 @@ public abstract class AbstractDatabaseMetaData implements DatabaseMetaData, Wrap
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ResultSet getColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern, Connection conn) {
|
|
||||||
try (Statement stmt = conn.createStatement()) {
|
|
||||||
if (catalog == null || catalog.isEmpty())
|
|
||||||
return null;
|
|
||||||
|
|
||||||
ResultSet databases = stmt.executeQuery("show databases");
|
|
||||||
String dbname = null;
|
|
||||||
while (databases.next()) {
|
|
||||||
dbname = databases.getString("name");
|
|
||||||
if (dbname.equalsIgnoreCase(catalog))
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
databases.close();
|
|
||||||
if (dbname == null)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
stmt.execute("use " + dbname);
|
|
||||||
DatabaseMetaDataResultSet resultSet = new DatabaseMetaDataResultSet();
|
|
||||||
// set up ColumnMetaDataList
|
|
||||||
|
|
||||||
List<ColumnMetaData> columnMetaDataList = new ArrayList<>(24);
|
|
||||||
// TABLE_CAT
|
|
||||||
ColumnMetaData col1 = new ColumnMetaData();
|
|
||||||
col1.setColIndex(1);
|
|
||||||
col1.setColName("TABLE_CAT");
|
|
||||||
col1.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
|
||||||
columnMetaDataList.add(col1);
|
|
||||||
// TABLE_SCHEM
|
|
||||||
ColumnMetaData col2 = new ColumnMetaData();
|
|
||||||
col2.setColIndex(2);
|
|
||||||
col2.setColName("TABLE_SCHEM");
|
|
||||||
col2.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
|
||||||
columnMetaDataList.add(col2);
|
|
||||||
// TABLE_NAME
|
|
||||||
ColumnMetaData col3 = new ColumnMetaData();
|
|
||||||
col3.setColIndex(3);
|
|
||||||
col3.setColName("TABLE_NAME");
|
|
||||||
col3.setColSize(193);
|
|
||||||
col3.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
|
||||||
columnMetaDataList.add(col3);
|
|
||||||
// COLUMN_NAME
|
|
||||||
ColumnMetaData col4 = new ColumnMetaData();
|
|
||||||
col4.setColIndex(4);
|
|
||||||
col4.setColName("COLUMN_NAME");
|
|
||||||
col4.setColSize(65);
|
|
||||||
col4.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
|
||||||
columnMetaDataList.add(col4);
|
|
||||||
// DATA_TYPE
|
|
||||||
ColumnMetaData col5 = new ColumnMetaData();
|
|
||||||
col5.setColIndex(5);
|
|
||||||
col5.setColName("DATA_TYPE");
|
|
||||||
col5.setColType(TSDBConstants.TSDB_DATA_TYPE_INT);
|
|
||||||
columnMetaDataList.add(col5);
|
|
||||||
// TYPE_NAME
|
|
||||||
ColumnMetaData col6 = new ColumnMetaData();
|
|
||||||
col6.setColIndex(6);
|
|
||||||
col6.setColName("TYPE_NAME");
|
|
||||||
col6.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
|
||||||
columnMetaDataList.add(col6);
|
|
||||||
// COLUMN_SIZE
|
|
||||||
ColumnMetaData col7 = new ColumnMetaData();
|
|
||||||
col7.setColIndex(7);
|
|
||||||
col7.setColName("COLUMN_SIZE");
|
|
||||||
col7.setColType(TSDBConstants.TSDB_DATA_TYPE_INT);
|
|
||||||
columnMetaDataList.add(col7);
|
|
||||||
// BUFFER_LENGTH ,not used
|
|
||||||
columnMetaDataList.add(null);
|
|
||||||
// DECIMAL_DIGITS
|
|
||||||
ColumnMetaData col9 = new ColumnMetaData();
|
|
||||||
col9.setColIndex(9);
|
|
||||||
col9.setColName("DECIMAL_DIGITS");
|
|
||||||
col9.setColType(TSDBConstants.TSDB_DATA_TYPE_INT);
|
|
||||||
columnMetaDataList.add(col9);
|
|
||||||
// add NUM_PREC_RADIX
|
|
||||||
ColumnMetaData col10 = new ColumnMetaData();
|
|
||||||
col10.setColIndex(10);
|
|
||||||
col10.setColName("NUM_PREC_RADIX");
|
|
||||||
col10.setColType(TSDBConstants.TSDB_DATA_TYPE_INT);
|
|
||||||
columnMetaDataList.add(col10);
|
|
||||||
// NULLABLE
|
|
||||||
ColumnMetaData col11 = new ColumnMetaData();
|
|
||||||
col11.setColIndex(11);
|
|
||||||
col11.setColName("NULLABLE");
|
|
||||||
col11.setColType(TSDBConstants.TSDB_DATA_TYPE_INT);
|
|
||||||
columnMetaDataList.add(col11);
|
|
||||||
// REMARKS
|
|
||||||
ColumnMetaData col12 = new ColumnMetaData();
|
|
||||||
col12.setColIndex(12);
|
|
||||||
col12.setColName("REMARKS");
|
|
||||||
col12.setColType(TSDBConstants.TSDB_DATA_TYPE_NCHAR);
|
|
||||||
columnMetaDataList.add(col12);
|
|
||||||
|
|
||||||
resultSet.setColumnMetaDataList(columnMetaDataList);
|
|
||||||
// set up rowDataList
|
|
||||||
ResultSet rs = stmt.executeQuery("describe " + dbname + "." + tableNamePattern);
|
|
||||||
List<TSDBResultSetRowData> rowDataList = new ArrayList<>();
|
|
||||||
int index = 0;
|
|
||||||
while (rs.next()) {
|
|
||||||
TSDBResultSetRowData rowData = new TSDBResultSetRowData(24);
|
|
||||||
// set TABLE_CAT
|
|
||||||
rowData.setString(0, dbname);
|
|
||||||
// set TABLE_NAME
|
|
||||||
rowData.setString(2, tableNamePattern);
|
|
||||||
// set COLUMN_NAME
|
|
||||||
rowData.setString(3, rs.getString("Field"));
|
|
||||||
// set DATA_TYPE
|
|
||||||
String typeName = rs.getString("Type");
|
|
||||||
rowData.setInt(4, getDataType(typeName));
|
|
||||||
// set TYPE_NAME
|
|
||||||
rowData.setString(5, typeName);
|
|
||||||
// set COLUMN_SIZE
|
|
||||||
int length = rs.getInt("Length");
|
|
||||||
rowData.setInt(6, getColumnSize(typeName, length));
|
|
||||||
// set DECIMAL_DIGITS
|
|
||||||
rowData.setInt(8, getDecimalDigits(typeName));
|
|
||||||
// set NUM_PREC_RADIX
|
|
||||||
rowData.setInt(9, 10);
|
|
||||||
// set NULLABLE
|
|
||||||
rowData.setInt(10, getNullable(index, typeName));
|
|
||||||
// set REMARKS
|
|
||||||
rowData.setString(11, rs.getString("Note"));
|
|
||||||
rowDataList.add(rowData);
|
|
||||||
index++;
|
|
||||||
}
|
|
||||||
resultSet.setRowDataList(rowDataList);
|
|
||||||
return resultSet;
|
|
||||||
|
|
||||||
} catch (SQLException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected ResultSet getPrimaryKeys(String catalog, String schema, String table, Connection conn) throws SQLException {
|
protected ResultSet getPrimaryKeys(String catalog, String schema, String table, Connection conn) throws SQLException {
|
||||||
try (Statement stmt = conn.createStatement()) {
|
try (Statement stmt = conn.createStatement()) {
|
||||||
|
|
|
@ -33,6 +33,7 @@ public class RestfulDatabaseMetaData extends AbstractDatabaseMetaData {
|
||||||
return RestfulDriver.class.getName();
|
return RestfulDriver.class.getName();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ResultSet getTables(String catalog, String schemaPattern, String tableNamePattern, String[] types) throws SQLException {
|
public ResultSet getTables(String catalog, String schemaPattern, String tableNamePattern, String[] types) throws SQLException {
|
||||||
if (connection == null || connection.isClosed()) {
|
if (connection == null || connection.isClosed()) {
|
||||||
|
@ -48,6 +49,14 @@ public class RestfulDatabaseMetaData extends AbstractDatabaseMetaData {
|
||||||
return super.getCatalogs(connection);
|
return super.getCatalogs(connection);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ResultSet getTableTypes() throws SQLException {
|
||||||
|
if (connection == null || connection.isClosed()) {
|
||||||
|
throw new SQLException(TSDBConstants.FixErrMsg(TSDBConstants.JNI_CONNECTION_NULL));
|
||||||
|
}
|
||||||
|
return super.getTableTypes();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ResultSet getColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern) throws SQLException {
|
public ResultSet getColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern) throws SQLException {
|
||||||
if (connection == null || connection.isClosed())
|
if (connection == null || connection.isClosed())
|
||||||
|
|
Loading…
Reference in New Issue