Public Member Functions | |
bool | hasValueAt (const int index) const throw () |
bool | getBooleanAt (const int index) const |
double | getDoubleAt (const int index) const |
int | getIntAt (const int index) const |
std::string | getStringAt (const int index) const |
Friends | |
class | ResultPostgreSQL |
bool ResultRowPostgreSQL::hasValueAt | ( | const int | index | ) | const throw () [inline, virtual] |
Determines if it's safe to call any of the get methods. It does not throw.
true
if the cell contains a value. Implements dbfacade::ResultRow.
bool ResultRowPostgreSQL::getBooleanAt | ( | const int | index | ) | const [inline, virtual] |
bool
. EmptyResultSetException | if hasValueAt() would have returned false for the index. |
Implements dbfacade::ResultRow.
double ResultRowPostgreSQL::getDoubleAt | ( | const int | index | ) | const [inline, virtual] |
double
. EmptyResultSetException | if hasValueAt() would have returned false for the index. |
Implements dbfacade::ResultRow.
int ResultRowPostgreSQL::getIntAt | ( | const int | index | ) | const [inline, virtual] |
int
. EmptyResultSetException | if hasValueAt() would have returned false for the index. |
Implements dbfacade::ResultRow.
std::string ResultRowPostgreSQL::getStringAt | ( | const int | index | ) | const [inline, virtual] |
std::string
. EmptyResultSetException | if hasValueAt() would have returned false for the index. |
Implements dbfacade::ResultRow.
friend class ResultPostgreSQL [friend] |