Feeds:
Posts
Comments

Archive for February 7th, 2008

Statement Object in JDBC

A Statement object is used to send SQL statements to a database. It will act as containers for executing SQL statements on a given connection.
There are  three kinds of Statement objects.
1. Statement
2. PreparedStatement
It inherits from Statement.
3. CallableStatement
It  inherits from PreparedStatement.
Statement :
A Statement object is used to execute a simple SQL statement with no parameters The [...]

Read Full Post »