|
DCL 3.7.4
|
#include <SQL.h>
Public Member Functions | |
| SQLQuery (SQLConnection *_conn) __DCL_THROWS1(SQLException *) | |
| SQLQuery (SQLConnection &_conn) __DCL_THROWS1(SQLException *) | |
| virtual | ~SQLQuery () |
| void | prepare (const String &_sql) __DCL_THROWS1(SQLException *) |
| void | execute () __DCL_THROWS1(SQLException *) |
| void | execute (const String &_sql) __DCL_THROWS1(SQLException *) |
| void | fetch () __DCL_THROWS1(SQLException *) |
| bool | moreResults () __DCL_THROWS1(SQLException *) |
| bool | eof () const |
| int64_t | affectedRows () const |
| _CONST SQLFields & | fields () _CONST |
| _CONST SQLParams & | params () _CONST |
| SQL::Query * | handle () const |
| SQLConnection * | connection () const |
| Public Member Functions inherited from Object | |
| virtual String | toString () const |
| virtual void | destroy () |
| String | className () const |
| bool | isInstanceOf (const std::type_info &typeinfo) const |
| virtual const std::type_info & | typeInfo () const |
Protected Attributes | |
| SQL::Query * | __handle |
| SQLConnection * | __connection |
| SQLFields | __fields |
| SQLParams | __params |
Additional Inherited Members | |
| Protected Member Functions inherited from Object | |
| virtual | ~Object () |
| Object () | |
| SQLQuery::SQLQuery | ( | SQLConnection * | _conn | ) |
Definition at line 267 of file SQLQuery.cpp.
| SQLQuery::SQLQuery | ( | SQLConnection & | _conn | ) |
Definition at line 272 of file SQLQuery.cpp.
|
virtual |
Definition at line 277 of file SQLQuery.cpp.
|
inline |
|
inline |
|
inline |
| void SQLQuery::execute | ( | ) |
Definition at line 316 of file SQLQuery.cpp.
| void SQLQuery::execute | ( | const String & | _sql | ) |
Definition at line 330 of file SQLQuery.cpp.
| void SQLQuery::fetch | ( | ) |
Definition at line 336 of file SQLQuery.cpp.
|
inline |
| bool SQLQuery::moreResults | ( | ) |
Definition at line 343 of file SQLQuery.cpp.
| void SQLQuery::prepare | ( | const String & | _sql | ) |
Definition at line 282 of file SQLQuery.cpp.
|
protected |
|
protected |