java.sql

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Apache Harmony Java SE » java package » java.sql 
java.sql
Java Source File NameTypeComment
Array.javaInterface A Java representation of the SQL ARRAY type.
BatchUpdateException.javaClass An exception thrown if a problem occurs during a batch update operation.

A BatchUpdateException provides additional information about the problem that occurred, compared with a standard SQLException.

Blob.javaInterface A Java interface mapping for the SQL BLOB type.
CallableStatement.javaInterface An interface used to call Stored Procedures.

The JDBC API provides an SQL escape syntax allowing Stored Procedures to be called in a standard way for all databases.

Clob.javaInterface A Java interface mapping for the SQL CLOB type.
Connection.javaInterface A Connection represents a link from a Java application to a database.
DatabaseMetaData.javaInterface An interface which provides comprehensive information about the database.

This interface is implemented by JDBC driver writers in order to provide information about the underlying Database capabilities and the JDBC driver capabilities taken together.

Some of the methods in this interface take String parameters which are Patterns.

DataTruncation.javaClass An exception which is thrown when a JDBC driver unexpectedly truncates a data value either when reading or when writing data.
Date.javaClass A Date class which can consume and produce dates in SQL Date format.

The SQL date format represents a date as yyyy-mm-dd.

Driver.javaInterface An Interface to a JDBC Driver.

The JDBC Driver uses URLs to specify the location of specific data.

DriverManager.javaClass Provides facilities for managing JDBC Drivers.
DriverPropertyInfo.javaClass A class holding information about Driver Properties for making a Connection.
ParameterMetaData.javaInterface An interface used to get information about the types and properties of parameters in a PreparedStatement object.
PreparedStatement.javaInterface An interface for a Precompiled SQL Statement.

An SQL Statement is put into a PreparedStatement and is precompiled so that it can be executed multiple times efficiently.

Setter methods are supplied in the PreparedStatement interface for the setting of IN parameters for the Statement.

Ref.javaInterface A manifestation of the SQL REF type - a reference to an SQL type contained in the database.

The SQL REF's are held in a table along with SQL structured types.

ResultSet.javaInterface An interface to an Object which represents a Table of Data, typically returned as the result of a Query to a Database.

ResultSets have a Cursor which points to a current row of data.

ResultSetMetaData.javaInterface Provides information about the columns in a ResultSet.
Savepoint.javaInterface A Savepoint is an instant during the current transaction that can be utilized by a Rollback from the Connection.rollback method.
SQLData.javaInterface An interface for the custom mapping of an SQL User Defined Type (UDT) to a Java Class.
SQLException.javaClass An Exception class that is used in conjunction with JDBC operations.
SQLInput.javaInterface The SQLInput interface defines operations which apply to a type of input stream which carries a series of values which represent an instance of an SQL structured type or SQL distinct type.

SQLInput interface is used for custom mapping of SQL User Defined Types (UDTs)to Java classes.

SQLOutput.javaInterface The interface for an output stream used to write attributes of an SQL User Defined Type to the database.
SQLPermission.javaClass Permission relating to security access control in the java.sql package.

Currently, the only permission supported has the name "setLog".

SQLWarning.javaClass An exception class that holds information about Database access warnings.
Statement.javaInterface Interface used for executing static SQL statements and returning their results. By default, an object implementing the Statement interface can returns results as ResultSets.
Struct.javaInterface An interface which provides facilities for mapping an SQL structured type to Java.
Time.javaClass Java representation of an SQL TIME value.
Timestamp.javaClass A Java representation of the SQL TIMESTAMP type.
Types.javaClass A class which defines constants used to identify generic SQL types, also called JDBC types.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.