createStatement()
Syntax:
Statement createStatement() throws SQLException
Description:
Creates a Statement
object for sending SQL statements to the database. SQL statements without parameters are normally executed using Statement
objects. If the same SQL statement is executed many times, it may be more efficient to use a PreparedStatement
object.
Result sets created using the returned Statement
object will by default be type TYPE_FORWARD_ONLY
and have a concurrency level of CONCUR_READ_ONLY
. The holdability of the created result sets can be determined by calling getHoldability()
.
Returns:
Type: Statement
a new default Statement
object
Throws:
SQLException - if a database access error occurs
Reference:
For more information, reference JDBC documentation for: Connection.createStatement()