#include <statement.h>
Inheritance diagram for odbc::Statement:
|
Destructor.
Destroys/closes this statement as well as all created resultsets.
|
Execute a given SQL statement.
The statement can return multiple results. To get to the next result after processing the first one, getMoreResults() should be called.
sql | The string to execute |
|
Execute an SQL statement, expected to return a resultset.
sql | The string to execute |
|
Execute an SQL statement, expected to return an update count.
|
Gets the current escape processing setting.
true
if escape processing is on, false
otherwise
|
Check if there are more results available on this statment.
|
Fetch the current result as an update count.
-1
if the result is a ResultSet or if there are no more results.
|
Sets escape processing on or off.
For PreparedStatement
s, the command has been parsed on creation, so this setting won't really have any effect.