DatabaseMetaData Methods for Information on the Database's Supported Features : DatabaseMetadata « Database « Java Tutorial






  1. boolean supportsAlterTableWithAddColumn();
  2. boolean supportsAlterTableWithDropColumn();
  3. boolean supportsColumnAliasing();
  4. boolean nullPlusNonNullIsNull();
  5. boolean supportsConvert();
  6. boolean supportsConvert(int fromType, int toType);
  7. boolean supportsTableCorrelationNames();
  8. boolean supportsDifferentTableCorrelationNames();
  9. boolean supportsExpressionsInOrderBy();
  10. boolean supportsOrderByUnrelated();
  11. boolean supportsGroupBy();
  12. boolean supportsGroupByUnrelated();
  13. boolean supportsGroupByBeyondSelect();
  14. boolean supportsLikeEscapeClause();
  15. boolean supportsMultipleResultSets();
  16. boolean supportsMultipleTransactions();
  17. boolean supportsNonNullableColumns();
  18. boolean supportsMinimumSQLGrammar();
  19. boolean supportsCoreSQLGrammar();
  20. boolean supportsExtendedSQLGrammar();
  21. boolean supportsANSI92EntryLevelSQL();
  22. boolean supportsANSI92IntermediateSQL();
  23. boolean supportsANSI92FullSQL();
  24. boolean supportsIntegrityEnhancementFacility();
  25. boolean supportsOuterJoins();
  26. boolean supportsFullOuterJoins();
  27. boolean supportsLimitedOuterJoins();
  28. String getSchemaTerm();
  29. String getProcedureTerm();
  30. String getCatalogTerm();
  31. boolean isCatalogAtStart();
  32. String getCatalogSeparator();
  33. boolean supportsSchemasInDataManipulation();
  34. boolean supportsSchemasInProcedureCalls();
  35. boolean supportsSchemasInTableDefinitions();
  36. boolean supportsSchemasInIndexDefinitions();
  37. boolean supportsSchemaInPrivilegeDefinitions();
  38. boolean supportsCatalogsInDataManipulation();
  39. boolean supportsCatalogsInProcedureCalls();
  40. boolean supportsCatalogsInTableDefinitions();
  41. boolean supportsCatalogsInIndexDefinitions();
  42. boolean supportsCatalogsInPrivilegeDefinitions();
  43. boolean supportsPositionedDelete();
  44. boolean supportsPositionedUpdate();
  45. boolean supportsSelectForUpdate();
  46. boolean supportsStoredProcedures();
  47. boolean supportsSubqueriesInComparisons();
  48. boolean supportsSubqueriesInExists();
  49. boolean supportsSubqueriesInIns();
  50. boolean supportsSubqueriesInQuantifieds();
  51. boolean supportsCorrelatedSubqueries();
  52. boolean supportsUnion();
  53. boolean supportsUnionAll();
  54. boolean supportsOpenCursorAcrossCommit();
  55. boolean supportsOpenCursorAcrossRollback();
  56. boolean supportsOpenStatementAcrossCommit();
  57. boolean supportsOpenStatementAcrossRollback();








20.30.DatabaseMetadata
20.30.1.Database Metadata
20.30.2.Get Table Names from a Database
20.30.3.Get View Names from a Database
20.30.4.Get Table and View Names from a Database
20.30.5.DatabaseMetaData Methods for Database Information
20.30.6.Get Database information from DatabaseMetaData
20.30.7.DatabaseMetaData Methods for Information on the Database's Supported Features
20.30.8.DatabaseMetaData Methods for Information on the Database's Limitations
20.30.9.Display Database Limitation for your connection
20.30.10.DatabaseMetaData Methods for Information on the Database's Contents
20.30.11.Display Database contents for current connection
20.30.12.Get table information from DatabaseMetaData
20.30.13.Get procedure information from DatabaseMetaData
20.30.14.Listing All Non-SQL92 Keywords Used by a Database
20.30.15.Listing the String Functions Supported by a Database: retrieves a list of string functions that a database supports.
20.30.16.Listing the Numeric Functions Supported by a Database
20.30.17.Listing the System Functions Supported by a Database
20.30.18.Listing the Time and Date Functions Supported by a Database
20.30.19.Getting the Maximum Table Name Length allowed in a Database
20.30.20.Listing Available SQL data Types Used by a Database
20.30.21.Get system functions supported by database
20.30.22.Get the max concurrent connection to a database
20.30.23.Get database maximum table name length
20.30.24.Get numeric functions supported by database
20.30.25.If database support batch update
20.30.26.Get data types supported by database
20.30.27.Get date time functions supported by database
20.30.28.Detect if a table exists
20.30.29.Get string functions supported by database