Returns a statement object on the specified connection object.
Syntax
createStatement( connection )
connection.createStatement( )
Parameters
connection
|
the connection object to create a statement object on.
|
Returns
statement
|
the new statement object.
|
Example
stmt = con.createStatement( )
|