Available Methods
- getTables ( )
- getColumns ( )
- getPrimaryKeys ( )
- getDatabaseProductName ( )
- getSchemas ( )
- getIndexInfo ( )
- getImportedKeys ( )
- getDatabaseMajorVersion ( )
- getProcedureColumns ( )
- getTypeInfo ( )
- getURL ( )
- getUserName ( )
- getDatabaseProductVersion ( )
- getProcedures ( )
- getIdentifierQuoteString ( )
- getExportedKeys ( )
- getCrossReference ( )
- getDriverVersion ( )
- getTableTypes ( )
- getFunctionColumns ( )
- getDriverName ( )
- storesUpperCaseIdentifiers ( )
- supportsMixedCaseIdentifiers ( )
- getFunctions ( )
- getDatabaseMinorVersion ( )
- getSearchStringEscape ( )
- columnNullable ( )
- getCatalogs ( )
- getConnection ( )
- supportsMixedCaseQuotedIdentifiers ( )
- importedKeySetNull ( )
- supportsGetGeneratedKeys ( )
- columnNoNulls ( )
- generatedKeyAlwaysReturned ( )
- supportsSchemasInTableDefinitions ( )
- storesLowerCaseIdentifiers ( )
- supportsBatchUpdates ( )
- getMaxConnections ( )
- getPseudoColumns ( )
- sqlStateSQL99 ( )
- nullsAreSortedAtEnd ( )
- procedureColumnReturn ( )
- importedKeyNoAction ( )
- functionColumnIn ( )
- procedureResultUnknown ( )
- getUDTs ( )
- supportsNamedParameters ( )
- getMaxColumnsInGroupBy ( )
- locatorsUpdateCopy ( )
- supportsConvert ( )
- getNumericFunctions ( )
- getSuperTypes ( )
- procedureReturnsResult ( )
- columnNullableUnknown ( )
- supportsCatalogsInTableDefinitions ( )
- getDriverMajorVersion ( )
- supportsSavepoints ( )
- getColumnPrivileges ( )
- supportsANSI92EntryLevelSQL ( )
- procedureColumnInOut ( )
- supportsResultSetType ( )
- getSystemFunctions ( )
- getBestRowIdentifier ( )
- isReadOnly ( )
- doesMaxRowSizeIncludeBlobs ( )
- supportsGroupByUnrelated ( )
- isCatalogAtStart ( )
- getAttributes ( )
- supportsTransactionIsolationLevel ( )
- procedureColumnOut ( )
- getJDBCMajorVersion ( )
- procedureColumnIn ( )
- getResultSetHoldability ( )
- getMaxCharLiteralLength ( )
- supportsStatementPooling ( )
- supportsSchemasInDataManipulation ( )
Related Classes
- java.util.Arrays
- java.util.Collections
- java.util.Iterator
- java.util.Locale
- java.lang.reflect.Method
- org.junit.Before
- java.util.LinkedList
- java.util.Properties
- java.util.stream.Collectors
- java.util.LinkedHashMap
- org.junit.Assert
- java.util.TreeMap
- java.util.TreeSet
- org.apache.commons.lang3.StringUtils
- java.sql.SQLException
- java.util.logging.Level
- java.sql.Connection
- java.sql.ResultSet
- org.mockito.Mockito
- com.google.common.collect.ImmutableList
- javax.sql.DataSource
- org.apache.commons.lang.StringUtils
- com.google.common.collect.ImmutableMap
- java.sql.PreparedStatement
- java.sql.Statement
Java Code Examples for java.sql.DatabaseMetaData#isCatalogAtStart()
The following examples show how to use
java.sql.DatabaseMetaData#isCatalogAtStart() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: GetDatabaseInfoTests.java From sqlhelper with GNU Lesser General Public License v3.0 | 6 votes |
/** * catalog.schema.table * * @param dbMetaData * @throws SQLException */ void showCatalogs(DatabaseMetaData dbMetaData) throws SQLException { ResultSet catalogRs = dbMetaData.getCatalogs(); List<String> catalogs = Collects.emptyArrayList(); while (catalogRs.next()) { String catalog = catalogRs.getString("TABLE_CAT"); catalogs.add(catalog); } String catalogSeparator = dbMetaData.getCatalogSeparator(); String catalogTerm = dbMetaData.getCatalogTerm(); boolean catalogAtStart = dbMetaData.isCatalogAtStart(); int maxCatalogLength = dbMetaData.getMaxCatalogNameLength(); System.out.println("maxCatalogNameLength: " + maxCatalogLength); System.out.println("catalogSeparator: " + catalogSeparator); // . System.out.println("catalogTerm: " + catalogTerm); //catalog System.out.println("catalogs: " + catalogs.toString()); System.out.println("catalog at start ? :" + catalogAtStart); }
Example 2
Source File: QualifiedObjectNameFormatterStandardImpl.java From lams with GNU General Public License v2.0 | 5 votes |
public QualifiedObjectNameFormatterStandardImpl( NameQualifierSupport nameQualifierSupport, DatabaseMetaData databaseMetaData) throws SQLException { this( nameQualifierSupport, databaseMetaData.getCatalogSeparator(), !databaseMetaData.isCatalogAtStart() ); }