com.github.housepower.jdbc.wrapper.SQLDatabaseMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickhouse-native-jdbc Show documentation
Show all versions of clickhouse-native-jdbc Show documentation
ClickHouse Native Protocol JDBC implementation
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.housepower.jdbc.wrapper;
import java.sql.*;
public interface SQLDatabaseMetadata extends DatabaseMetaData {
@Override
default int getDriverMajorVersion() {
return 0;
}
@Override
default int getDriverMinorVersion() {
return 0;
}
@Override
default boolean allProceduresAreCallable() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean allTablesAreSelectable() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default String getURL() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default String getUserName() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean isReadOnly() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean nullsAreSortedHigh() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean nullsAreSortedLow() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean nullsAreSortedAtStart() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean nullsAreSortedAtEnd() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default String getDatabaseProductName() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default String getDatabaseProductVersion() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default String getDriverName() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default String getDriverVersion() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean usesLocalFiles() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean usesLocalFilePerTable() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsMixedCaseIdentifiers() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean storesUpperCaseIdentifiers() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean storesLowerCaseIdentifiers() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean storesMixedCaseIdentifiers() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsMixedCaseQuotedIdentifiers() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean storesUpperCaseQuotedIdentifiers() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean storesLowerCaseQuotedIdentifiers() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean storesMixedCaseQuotedIdentifiers() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default String getIdentifierQuoteString() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default String getSQLKeywords() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default String getNumericFunctions() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default String getStringFunctions() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default String getSystemFunctions() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default String getTimeDateFunctions() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default String getSearchStringEscape() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default String getExtraNameCharacters() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsAlterTableWithAddColumn() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsAlterTableWithDropColumn() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsColumnAliasing() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean nullPlusNonNullIsNull() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsConvert() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsConvert(int fromType, int toType) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsTableCorrelationNames() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsDifferentTableCorrelationNames() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsExpressionsInOrderBy() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsOrderByUnrelated() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsGroupBy() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsGroupByUnrelated() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsGroupByBeyondSelect() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsLikeEscapeClause() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsMultipleResultSets() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsMultipleTransactions() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsNonNullableColumns() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsMinimumSQLGrammar() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsCoreSQLGrammar() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsExtendedSQLGrammar() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsANSI92EntryLevelSQL() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsANSI92IntermediateSQL() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsANSI92FullSQL() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsIntegrityEnhancementFacility() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsOuterJoins() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsFullOuterJoins() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsLimitedOuterJoins() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default String getSchemaTerm() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default String getProcedureTerm() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default String getCatalogTerm() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean isCatalogAtStart() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default String getCatalogSeparator() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsSchemasInDataManipulation() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsSchemasInProcedureCalls() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsSchemasInTableDefinitions() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsSchemasInIndexDefinitions() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsSchemasInPrivilegeDefinitions() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsCatalogsInDataManipulation() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsCatalogsInProcedureCalls() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsCatalogsInTableDefinitions() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsCatalogsInIndexDefinitions() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsCatalogsInPrivilegeDefinitions() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsPositionedDelete() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsPositionedUpdate() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsSelectForUpdate() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsStoredProcedures() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsSubqueriesInComparisons() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsSubqueriesInExists() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsSubqueriesInIns() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsSubqueriesInQuantifieds() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsCorrelatedSubqueries() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsUnion() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsUnionAll() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsOpenCursorsAcrossCommit() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsOpenCursorsAcrossRollback() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsOpenStatementsAcrossCommit() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsOpenStatementsAcrossRollback() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxBinaryLiteralLength() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxCharLiteralLength() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxColumnNameLength() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxColumnsInGroupBy() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxColumnsInIndex() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxColumnsInOrderBy() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxColumnsInSelect() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxColumnsInTable() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxConnections() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxCursorNameLength() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxIndexLength() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxSchemaNameLength() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxProcedureNameLength() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxCatalogNameLength() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxRowSize() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean doesMaxRowSizeIncludeBlobs() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxStatementLength() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxStatements() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxTableNameLength() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxTablesInSelect() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getMaxUserNameLength() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getDefaultTransactionIsolation() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsTransactions() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsTransactionIsolationLevel(int level) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsDataDefinitionAndDataManipulationTransactions() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsDataManipulationTransactionsOnly() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean dataDefinitionCausesTransactionCommit() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean dataDefinitionIgnoredInTransactions() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getProcedures(String catalog, String schemaPattern, String procedureNamePattern)
throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getProcedureColumns(String catalog, String schemaPattern, String procedureNamePattern,
String columnNamePattern) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getTables(String catalog, String schemaPattern, String tableNamePattern, String[] types)
throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getSchemas() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getCatalogs() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getTableTypes() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern)
throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getColumnPrivileges(String catalog, String schema, String table, String columnNamePattern)
throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getTablePrivileges(String catalog, String schemaPattern, String tableNamePattern)
throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getBestRowIdentifier(String catalog, String schema, String table, int scope, boolean nullable)
throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getVersionColumns(String catalog, String schema, String table) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getPrimaryKeys(String catalog, String schema, String table) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getImportedKeys(String catalog, String schema, String table) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getExportedKeys(String catalog, String schema, String table) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getCrossReference(String parentCatalog, String parentSchema, String parentTable,
String foreignCatalog, String foreignSchema, String foreignTable) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getTypeInfo() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getIndexInfo(String catalog, String schema, String table, boolean unique, boolean approximate)
throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsResultSetType(int type) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsResultSetConcurrency(int type, int concurrency) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean ownUpdatesAreVisible(int type) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean ownDeletesAreVisible(int type) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean ownInsertsAreVisible(int type) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean othersUpdatesAreVisible(int type) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean othersDeletesAreVisible(int type) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean othersInsertsAreVisible(int type) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean updatesAreDetected(int type) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean deletesAreDetected(int type) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean insertsAreDetected(int type) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsBatchUpdates() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getUDTs(String catalog, String schemaPattern, String typeNamePattern, int[] types)
throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default Connection getConnection() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsSavepoints() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsNamedParameters() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsMultipleOpenResults() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsGetGeneratedKeys() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getSuperTypes(String catalog, String schemaPattern, String typeNamePattern)
throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getSuperTables(String catalog, String schemaPattern, String tableNamePattern)
throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getAttributes(String catalog, String schemaPattern, String typeNamePattern,
String attributeNamePattern) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsResultSetHoldability(int holdability) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getResultSetHoldability() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getDatabaseMajorVersion() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getDatabaseMinorVersion() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getJDBCMajorVersion() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getJDBCMinorVersion() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default int getSQLStateType() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean locatorsUpdateCopy() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsStatementPooling() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default RowIdLifetime getRowIdLifetime() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getSchemas(String catalog, String schemaPattern) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean supportsStoredFunctionsUsingCallSyntax() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean autoCommitFailureClosesAllResultSets() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getClientInfoProperties() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getFunctions(String catalog, String schemaPattern, String functionNamePattern)
throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getFunctionColumns(String catalog, String schemaPattern, String functionNamePattern,
String columnNamePattern) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default ResultSet getPseudoColumns(String catalog, String schemaPattern, String tableNamePattern,
String columnNamePattern) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean generatedKeyAlwaysReturned() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default T unwrap(Class iface) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
default boolean isWrapperFor(Class> iface) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy