This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes JDBC and the fly likes New Features of java.sql & javax.sql packages Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "New Features of java.sql & javax.sql packages" Watch "New Features of java.sql & javax.sql packages" New topic
Author

New Features of java.sql & javax.sql packages

Ko Ko Naing
Ranch Hand

Joined: Jun 08, 2002
Posts: 3178
java.sql and javax.sql Features Introduced in the JDBC 3.0 API
Pooled statements -- reuse of statements associated with a pooled connection
Savepoints -- allow a transaction to be rolled back to a designated savepoint
Properties defined for ConnectionPoolDataSource -- specify how connections are to be pooled
Metadata for parameters of a PreparedStatement object
Ability to retrieve values from automatically generated columns
Ability to have multiple ResultSet objects returned from CallableStatement objects open at the same time
Ability to identify parameters to CallableStatement objects by name as well as by index
ResultSet holdability -- ability to specify whether cursors should be held open or closed at the end of a transaction
Ability to retrieve and update the SQL structured type instance that a Ref object references
Ability to programmatically update BLOB, CLOB, ARRAY, and REF values.
Addition of the java.sql.Types.DATALINK data type -- allows JDBC drivers access to objects stored outside a data source
Addition of metadata for retrieving SQL type hierarchies


Co-author of SCMAD Exam Guide, Author of JMADPlus
SCJP1.2, CCNA, SCWCD1.4, SCBCD1.3, SCMAD1.0, SCJA1.0, SCJP6.0
Pradeep bhatt
Ranch Hand

Joined: Feb 27, 2002
Posts: 8876

http://www-106.ibm.com/developerworks/java/library/j-jdbcnew/


Groovy
Ko Ko Naing
Ranch Hand

Joined: Jun 08, 2002
Posts: 3178
Urs are also cool, man... From IBM site... Hope people got knowledge from it too...
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: New Features of java.sql & javax.sql packages
 
Similar Threads
best programming practises of JDBC
JDBC API Tutorial - questions about the book
what is difference between JDBC1 and JDBC2 ?
connection to mssql server database
Java application Microsoft SQL server