|
|
|
JDBC
|
Important JDBC Concepts
Transactions: Whenever a connection is created by using the JDBC, then by default it is in auto- commit mode. This means that SQL statement will be automatically committed immediately after it is executed and it is treated as a transaction.
View Rating |
|
|
JDBC
|
Difference between JDBC 3.0 & JDBC 4.0
JDBC 3.0 version there is number of properties defined for the ConnectionPoolDataSource. These properties can be used to describe how the PooledConnection objects created by DataSource objects should be pooled.
View Rating |
|
|
JDBC
|
Features of JDBC 4.0
JDBC 4 is a major new release with a strong focus ease-of-use and programmer productivity. JDBC 4's key priority is to make it easier for developers to work directly with the JDBC API.
View Rating |
|
|
JDBC
|
JDBC Versions
The JDBC 1.0 API was the first officially JDBC API launched consists of the following java classes and interfaces that you can open connections to particular databases.
View Rating |
|
|
JDBC
|
JDBC Driver and Its Types
The JDBC DriverManager class defines objects which can connect Java applications to a JDBC driver. DriverManager has traditionally been the backbone of the JDBC architecture. It is quite small and simple.
View Rating |
|
|