Table of Contents

Jdbc - Statement

About

What are SQL Statements?

Creation

Statement objects are created by Connection objects

Connection conn = dataSource.getConnection(user, passwd);
Statement stmt = conn.createStatement()

Type

The Statement interface defines methods for executing SQL statements.

There is also two subclasses:

Type of SQL and type of execute method

The method used to execute a Statement object depends on the type of SQL statement being executed. If the Statement object is:

Batch

Statements may also be batched, allowing an application to submit multiple statement as a single unit of execution.

Property

Timeout

The setQueryTimeout method may be used to specify the minimum amount of time before a a JDBC driver attempts to cancel a running statement. A JDBC driver must apply this limit to the execute, executeBatch, executeQuery and executeUpdate methods.