Is anyone aware of a website/documentation which has a one to one
comparision of corresponding programming features available in JDBC Vs
SQLj. For example:
CONCURRENCY:
- JDBC: set through resultSetConcur rency constant in the constructor
for Statement/PreparedStateme nt. It can be ResultSet.CONCU R_READ_ONLY
or
ResultSet.CONCU R_UPDATABLE
- SQLj: set through SQLj SET TRANSACTION clause with the following
syntax:
SET TRANSACTION ISOLATION LEVEL (READ COMMITTED)/( READ
UNCOMMITTED)/(REPEATABLE READ)/(SERIALIZABLE)
HOLDABILITY:
- JDBC: blah..blah
- SQLj: blah..blah
resultSetType:
- JDBC: blah..blah
- SQLj: blah..blah
TIA
Raquel.
comparision of corresponding programming features available in JDBC Vs
SQLj. For example:
CONCURRENCY:
- JDBC: set through resultSetConcur rency constant in the constructor
for Statement/PreparedStateme nt. It can be ResultSet.CONCU R_READ_ONLY
or
ResultSet.CONCU R_UPDATABLE
- SQLj: set through SQLj SET TRANSACTION clause with the following
syntax:
SET TRANSACTION ISOLATION LEVEL (READ COMMITTED)/( READ
UNCOMMITTED)/(REPEATABLE READ)/(SERIALIZABLE)
HOLDABILITY:
- JDBC: blah..blah
- SQLj: blah..blah
resultSetType:
- JDBC: blah..blah
- SQLj: blah..blah
TIA
Raquel.