Differ java.sql.* and javax.sql.*

Dear Friends,What is differenece between java.sql.* and javax.sql.*?. Advance in thanks
[108 byte] By [Manivela] at [2007-10-3 4:30:57]
# 1

java.sql is the package you can use for all basic kinds of database access. If you are not developing a full scale enterprise application, java.sql package is all that you need.

javax.sql is extension to the basic java.sql package. It includes classes that allow connection pooling and rowsets, among others.

If you are just getting started with JDBC, you just need to get familiar with java.sql and leave the wonders of javax.sql until later.

mdoubledragona at 2007-7-14 22:34:17 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 2
ThanksCan you give some sample programs using javax.sql.*, and javax.sql.rowset.*Advance in thanks
Manivela at 2007-7-14 22:34:17 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 3
In google/Yahoo/etc "Java RowSet example"
masijade.a at 2007-7-14 22:34:17 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...