![]() |
The Java Developers Almanac 1.4Order this book from Amazon. |
e289. Getting the Maximum Table Name Length in a DatabaseThis example gets the maximum number of characters allowed in a table name.try { // Gets database metadata DatabaseMetaData dbmd = connection.getMetaData(); // Get max table name length int length = dbmd.getMaxTableNameLength(); } catch (SQLException e) { }
e285. Listing the String Functions Supported by a Database e286. Listing the Numeric Functions Supported by a Database e287. Listing the System Functions Supported by a Database e288. Listing the Time and Date Functions Supported by a Database e290. Listing Available SQL Types Used by a Database e291. Getting the Name of a JDBC Type © 2002 Addison-Wesley. |