SourcePro® 2024.1 |
SourcePro® API Reference Guide |
Encapsulates a database-specific SQL statement with all its input and output bindings. More...
#include <rw/db/osql.h>
Public Types | |
enum | CancelType { Current , All } |
enum | StatementType { NonQuery , Query , Procedure } |
Public Member Functions | |
RWDBOSql () | |
RWDBOSql (const RWCString &sql, StatementType type=NonQuery) | |
RWDBOSql (const RWDBOSql &osql) | |
~RWDBOSql () | |
RWDBOSql & | cancel (CancelType tp) |
RWDBStatus::ErrorHandler | errorHandler () const |
void | execute (const RWDBConnection &cn, size_t blkSz=0) |
RWDBOSql & | fetch () |
RWDBOSql & | fetchReturnParams () |
bool | hasResult () const |
bool | isReady () const |
bool | isValid () const |
RWDBOSql & | operator<< (RWDBAbstractBuffer &input) |
RWDBOSql & | operator<< (RWDBDataCallback &input) |
RWDBOSql & | operator= (const RWDBOSql &osql) |
RWDBMultiRow & | operator[] (size_t index) |
RWDBValue | returnValue () const |
long | rowCount () const |
long | rowsAffected () const |
long | rowsFetched () const |
RWDBSchema | schema () const |
void | setErrorHandler (RWDBStatus::ErrorHandler err) |
RWCString | statement () const |
RWDBOSql & | statement (const RWCString &sql, StatementType type=NonQuery) |
RWDBStatus | status () const |
StatementType | type () const |
Class RWDBOSql is an encapsulation of a database-specific SQL statement with all its input and output bindings. Program variables may be bound to placeholders in your statement using operator<<() and shifting in RWDBAbstractBuffer objects, such as RWDBTBuffer instances, which describe input data. Class RWDBOSql also contains a vector of RWDBMultiRow instances, each of which specifies the output bindings for a single result set. You can use the RWDBOSql operator[]() to obtain a reference to an RWDBMultiRow, and then use the RWDBMultiRow operator>>() to provide output bindings for the RWDBMultiRow.
When executing an RWDBOSql that produces results, there are two options for specifying the output RWDBAbstractBuffer objects for those results:
RWDBOSql is designed around the Interface/Implementation paradigm. An RWDBOSql instance is an interface to a reference-counted implementation. Copy constructors and assignment operators produce additional references to a shared implementation.
Example 1
In this example, we use an RWDBOSql to execute a query with a placeholder. The input value and output storage are both specified using RWDBTBuffer. Please note that Oracle-specific placeholder syntax is used here; check your access module guide or vendor documentation for appropriate SQL and placeholder syntax.
Example 2
In this example, we use an RWDBOSql to execute a user-supplied ad hoc query. We then use an RWDBMultiRow to fetch the results.
Example 3
In this example, we use an RWDBOSql to execute a stored procedure that has one input and output parameter each. The input value and output storage are both specified using RWDBTBuffer. Please note that Oracle- specific placeholder syntax is used here; check your access module guide or vendor-specific documentation for appropriate SQL and placeholder syntax.
enum RWDBOSql::CancelType |
A class-scoped enum containing the statement cancel types understood by RWDBOSql. Please refer to the method RWDBOSql::cancel() for usage information.
Enumerator | |
---|---|
Current | Current. |
All | All. |
RWDBOSql::RWDBOSql | ( | ) |
Default constructor. Creates an RWDBOSql object with statement type RWDBOSql::NonQuery and no statement set. Its error handler is set to the error handler of the static RWDBManager.
RWDBOSql::RWDBOSql | ( | const RWCString & | sql, |
StatementType | type = NonQuery ) |
Creates an RWDBOSql with SQL statement set to sql, and statement type set to type. The statement type communicates to the access module the kind of query inside the statement. This information is used to help optimize binding and performance. The error handler for the created object is set to the error handler of the static RWDBManager, as in the default constructor.
RWDBOSql::RWDBOSql | ( | const RWDBOSql & | osql | ) |
Creates an RWDBOSql whose implementation is shared with osql. All attributes are shared, including statement, status, and bindings.
RWDBOSql::~RWDBOSql | ( | ) |
Cleans up the RWDBOSql implementation if it is the last RWDBOSql to reference that implementation, consistent with standard Interface/Implementation destructor behavior. Blocks if an asynchronous operation has not completed. If blocking is not desired, call to cancel the asynchronous operation before the RWDBOSql is destroyed.
RWDBOSql & RWDBOSql::cancel | ( | CancelType | tp | ) |
Attempts to cancel the pending result set, or current statement execution. The exact definition is vendor-dependent; see your access module guide for details.
RWDBStatus::ErrorHandler RWDBOSql::errorHandler | ( | ) | const |
Returns the error handler attached to self.
void RWDBOSql::execute | ( | const RWDBConnection & | cn, |
size_t | blkSz = 0 ) |
Executes the SQL statement on cn. If blkSz is nonzero, blkSz rows are sent to the server from the input bindings. If blkSz is zero, the number of rows sent is determined by the minimum of the lengths of all input-bound buffers.
RWDBOSql & RWDBOSql::fetch | ( | ) |
Fetches the current result set into the output bindings for that result set, and returns a reference to self. If the current result set has been completely fetched no rows are fetched, and the next call to fetch() moves to the next result set and fetches. The member function fetch() returns at most n
rows at a time, where n
is the minimum of the lengths of the output-bound RWDBTBuffer instances for the current result set. After calling fetch(), use rowsFetched() to determine how many rows were fetched.
RWDBOSql & RWDBOSql::fetchReturnParams | ( | ) |
Fetches any in/out or out-type stored procedure parameters into the bound buffers for those parameters. Returns a reference to self.
bool RWDBOSql::hasResult | ( | ) | const |
Returns true
if there is data waiting to be fetched. Also returns true
if all the data has been fetched, but the end-of-fetch has not yet been encountered. If no attempt is made to read past the end of the result set that was fetched, hasResult() still returns true
.
bool RWDBOSql::isReady | ( | ) | const |
Returns true
if the object is in ready state, indicating that accessing the object will not block. Accessing a nonready object may potentially block.
bool RWDBOSql::isValid | ( | ) | const |
RWDBOSql & RWDBOSql::operator<< | ( | RWDBAbstractBuffer & | input | ) |
Sets an input binding on the current binding location. Advances the current binding location internally by one, so that the next call to operator<<() binds the next binding location. Returns a reference to self.
RWDBOSql & RWDBOSql::operator<< | ( | RWDBDataCallback & | input | ) |
Sets an input binding on the current binding location. Advances the current binding location internally by one, so that the next call to operator<<() binds the next binding location. Returns a reference to self.
Assignment operator. Causes self's current implementation to be discarded, including its SQL statement, bindings, state, status, and any other attributes. Self then shares osql's implementation.
RWDBMultiRow & RWDBOSql::operator[] | ( | size_t | index | ) |
Returns a reference to the RWDBMultiRow that stores all the output bindings for the index th result set.
RWDBValue RWDBOSql::returnValue | ( | ) | const |
Obtains and returns the stored procedure return value, if one exists. If no return value exists, or a stored procedure has not been executed, returns an RWDBValue whose type is RWDBValue::NoType.
long RWDBOSql::rowCount | ( | ) | const |
Returns the number of rows affected by the last execute(), if available. Returns -1
if this information is unavailable.
long RWDBOSql::rowsAffected | ( | ) | const |
Returns the number of rows in the database affected by the most recent activity on self. Even if the recent activity has failed, this method would attempt to fetch the number of rows affected in spite of the failure. Returns -1
if this information cannot be fetched. Typically, this method only returns a valid value after updating, inserting, or deleting rows.
long RWDBOSql::rowsFetched | ( | ) | const |
RWDBSchema RWDBOSql::schema | ( | ) | const |
Returns the schema for the current result set, if the statement has been executed and has results. Returns an empty schema otherwise. This method is useful when the format of results are unknown, as is the case when using ad hoc queries.
void RWDBOSql::setErrorHandler | ( | RWDBStatus::ErrorHandler | err | ) |
Installs err as self's error handler.
RWCString RWDBOSql::statement | ( | ) | const |
Returns the current SQL statement by value. If no statement is set, returns an empty string (""
).
RWDBOSql & RWDBOSql::statement | ( | const RWCString & | sql, |
StatementType | type = NonQuery ) |
Sets the statement to sql, and the statement type to type. All pending queries are canceled. All bindings are cleared. Any error set on the RWDBOSql is cleared.
RWDBStatus RWDBOSql::status | ( | ) | const |
Returns the status of self.
StatementType RWDBOSql::type | ( | ) | const |
Returns the statement type of the RWDBOSql. StatementType is a class-scoped enum containing all the statement identifications understood by open SQL.
Copyright © 2024 Rogue Wave Software, Inc., a Perforce company. All Rights Reserved. |