JDBC and Connector/J 16 in version (Earthlink web hosting) 3.0 of

JDBC and Connector/J 16 in version 3.0 of the specification are shown in italics. The full Javadoc can be found at http://java.sun.com/j2se/1.4/docs/api/java/sql/package-summary.html. java.sql.Array: The Array interface is a mapping between the Java language and the SQL ARRAY type. The interface includes methods for bringing an ARRAY value to a client as a Java array or in a ResultSet. java.sql.BatchUpdateException: The BatchUpdateException is thrown when a batch update operation has failed. The exception includes all of the successful update commands that executed before the failure. java.sql.Blob: The Blob Java interface is a mapping to the SQL BLOB value. java.sql.CallableStatement: The CallableStatement interface is used to execute stored procedures if supported on the database. Parameters are allowed with the interface as well as escape syntax. java.sql.Clob: Clob is a mapping from the Java programming language to the SQL CLOB type. A CLOB is a Character Large Object. java.sql.Connection: The Connection interface provides a method for cre ating a connection to a specific database. All SQL is executed in the context of a Connection object. java.sql.DataTruncation: The DataTruncaction exception is thrown when data will be truncated. On a write, the exception is an error, but on a read, the exception is a warning. java.sql.DatabaseMetaData: The DatabaseMetaData interface is designed to provide information about the remote database that a connection has been made to previously. The information available to the DatabaseMeta- Data object will be different based on the database vendor and the informa tion it wants to provide. java.sql.Date: The Date class is a wrapper for JDBC to use as a map to the SQL DATE value. The value of Date is the number of milliseconds since Jan uary 1, 1970, 00:00:00:000 GMT. A thin wrapper around a millisecond value that allows JDBC to identify this as an SQL DATE value. A milliseconds value represents the number of mil liseconds that have passed since January 1, 1970, 00:00:00.000 GMT. java.sql.Driver: The Driver interface is implemented by all vendor drivers so that they can be loaded by a static class called DriverManager. The Dri ver object will automatically create an instance of itself and register with DriverManager. java.sql.DriverManager: The DriverManager class is used to manage all Driver objects.
Note: If you are looking for best hosting provider to host and run your tomcat application check Astra tomcat hosting services

Comments are closed.