#include <resultRow.hpp>

Public Member Functions | |
| ResultRow (void) | |
| Empty constructor. | |
| virtual std::string | operator[] (int i)=0 throw (Error) |
| virtual void | invalidate (void)=0 |
Class for accessing a single row of an SQL-query's result.
Definition at line 30 of file resultRow.hpp.
| ResultRow::ResultRow | ( | void | ) | [inline] |
| virtual void ResultRow::invalidate | ( | void | ) | [pure virtual] |
Invalidate the row. This method is called by the destructor of Statement to prevent the ResultRow object from using an invalid SQL-query handle.
Implemented in MySQLResultRow, and ODBCResultRow.
| virtual std::string ResultRow::operator[] | ( | int | i | ) | throw (Error) [pure virtual] |
Operator for retrieving columns.
| i | Number of column (starting from 0). |
Implemented in MySQLResultRow, and ODBCResultRow.