⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xmldatabasemetadata.java

📁 数据仓库工具
💻 JAVA
📖 第 1 页 / 共 3 页
字号:
  }
  public int getMaxTableNameLength() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getMaxTableNameLength() not yet implemented.");
  }
  public int getMaxTablesInSelect() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getMaxTablesInSelect() not yet implemented.");
  }
  public int getMaxUserNameLength() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getMaxUserNameLength() not yet implemented.");
  }
  public int getDefaultTransactionIsolation() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getDefaultTransactionIsolation() not yet implemented.");
  }
  public boolean supportsTransactions() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method supportsTransactions() not yet implemented.");
  }
  public boolean supportsTransactionIsolationLevel(int level) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method supportsTransactionIsolationLevel() not yet implemented.");
  }
  public boolean supportsDataDefinitionAndDataManipulationTransactions() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method supportsDataDefinitionAndDataManipulationTransactions() not yet implemented.");
  }
  public boolean supportsDataManipulationTransactionsOnly() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method supportsDataManipulationTransactionsOnly() not yet implemented.");
  }
  public boolean dataDefinitionCausesTransactionCommit() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method dataDefinitionCausesTransactionCommit() not yet implemented.");
  }
  public boolean dataDefinitionIgnoredInTransactions() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method dataDefinitionIgnoredInTransactions() not yet implemented.");
  }
  public ResultSet getProcedures(String catalog, String schemaPattern, String procedureNamePattern) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getProcedures() not yet implemented.");
  }
  public ResultSet getProcedureColumns(String catalog, String schemaPattern, String procedureNamePattern, String columnNamePattern) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getProcedureColumns() not yet implemented.");
  }
  public ResultSet getTables(String catalog, String schemaPattern, String tableNamePattern, String[] types) throws SQLException {
    XmlReader reader = new XmlReader( xmlConnection.getPath() );
    String[] columnNames = { "TableName" };
    XmlResultSet rset = new XmlResultSet(null, reader, null, columnNames, null, null);
    rset.selectTableNames();
    return rset;
  }
  public ResultSet getSchemas() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getSchemas() not yet implemented.");
  }
  public ResultSet getCatalogs() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getCatalogs() not yet implemented.");
  }
  public ResultSet getTableTypes() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getTableTypes() not yet implemented.");
  }
  public ResultSet getColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getColumns() not yet implemented.");
  }
  public ResultSet getColumnPrivileges(String catalog, String schema, String table, String columnNamePattern) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getColumnPrivileges() not yet implemented.");
  }
  public ResultSet getTablePrivileges(String catalog, String schemaPattern, String tableNamePattern) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getTablePrivileges() not yet implemented.");
  }
  public ResultSet getBestRowIdentifier(String catalog, String schema, String table, int scope, boolean nullable) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getBestRowIdentifier() not yet implemented.");
  }
  public ResultSet getVersionColumns(String catalog, String schema, String table) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getVersionColumns() not yet implemented.");
  }
  public ResultSet getPrimaryKeys(String catalog, String schema, String table) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getPrimaryKeys() not yet implemented.");
  }
  public ResultSet getImportedKeys(String catalog, String schema, String table) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getImportedKeys() not yet implemented.");
  }
  public ResultSet getExportedKeys(String catalog, String schema, String table) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getExportedKeys() not yet implemented.");
  }
  public ResultSet getCrossReference(String primaryCatalog, String primarySchema, String primaryTable, String foreignCatalog, String foreignSchema, String foreignTable) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getCrossReference() not yet implemented.");
  }
  public ResultSet getTypeInfo() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getTypeInfo() not yet implemented.");
  }
  public ResultSet getIndexInfo(String catalog, String schema, String table, boolean unique, boolean approximate) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getIndexInfo() not yet implemented.");
  }
  public boolean supportsResultSetType(int type) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method supportsResultSetType() not yet implemented.");
  }
  public boolean supportsResultSetConcurrency(int type, int concurrency) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method supportsResultSetConcurrency() not yet implemented.");
  }
  public boolean ownUpdatesAreVisible(int type) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method ownUpdatesAreVisible() not yet implemented.");
  }
  public boolean ownDeletesAreVisible(int type) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method ownDeletesAreVisible() not yet implemented.");
  }
  public boolean ownInsertsAreVisible(int type) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method ownInsertsAreVisible() not yet implemented.");
  }
  public boolean othersUpdatesAreVisible(int type) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method othersUpdatesAreVisible() not yet implemented.");
  }
  public boolean othersDeletesAreVisible(int type) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method othersDeletesAreVisible() not yet implemented.");
  }
  public boolean othersInsertsAreVisible(int type) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method othersInsertsAreVisible() not yet implemented.");
  }
  public boolean updatesAreDetected(int type) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method updatesAreDetected() not yet implemented.");
  }
  public boolean deletesAreDetected(int type) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method deletesAreDetected() not yet implemented.");
  }
  public boolean insertsAreDetected(int type) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method insertsAreDetected() not yet implemented.");
  }
  public boolean supportsBatchUpdates() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method supportsBatchUpdates() not yet implemented.");
  }
  public ResultSet getUDTs(String catalog, String schemaPattern, String typeNamePattern, int[] types) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getUDTs() not yet implemented.");
  }
  public Connection getConnection() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getConnection() not yet implemented.");
  }
  public boolean supportsSavepoints() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method supportsSavepoints() not yet implemented.");
  }
  public boolean supportsNamedParameters() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method supportsNamedParameters() not yet implemented.");
  }
  public boolean supportsMultipleOpenResults() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method supportsMultipleOpenResults() not yet implemented.");
  }
  public boolean supportsGetGeneratedKeys() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method supportsGetGeneratedKeys() not yet implemented.");
  }
  public ResultSet getSuperTypes(String catalog, String schemaPattern, String typeNamePattern) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getSuperTypes() not yet implemented.");
  }
  public ResultSet getSuperTables(String catalog, String schemaPattern, String tableNamePattern) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getSuperTables() not yet implemented.");
  }
  public ResultSet getAttributes(String catalog, String schemaPattern, String typeNamePattern, String attributeNamePattern) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getAttributes() not yet implemented.");
  }
  public boolean supportsResultSetHoldability(int holdability) throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method supportsResultSetHoldability() not yet implemented.");
  }
  public int getResultSetHoldability() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getResultSetHoldability() not yet implemented.");
  }
  public int getDatabaseMajorVersion() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getDatabaseMajorVersion() not yet implemented.");
  }
  public int getDatabaseMinorVersion() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getDatabaseMinorVersion() not yet implemented.");
  }
  public int getJDBCMajorVersion() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getJDBCMajorVersion() not yet implemented.");
  }
  public int getJDBCMinorVersion() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getJDBCMinorVersion() not yet implemented.");
  }
  public int getSQLStateType() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method getSQLStateType() not yet implemented.");
  }
  public boolean locatorsUpdateCopy() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method locatorsUpdateCopy() not yet implemented.");
  }
  public boolean supportsStatementPooling() throws SQLException {
    /**@todo Implement this java.sql.DatabaseMetaData method*/
    throw new java.lang.UnsupportedOperationException("Method supportsStatementPooling() not yet implemented.");
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -