| 415 | } |
| 416 | |
| 417 | const db_row* db_handle::get_first_row() const |
| 418 | { |
| 419 | if (result_ == NULL) { |
| 420 | return NULL; |
| 421 | } |
| 422 | |
| 423 | const std::vector<db_row*>& rows = result_->get_rows(); |
| 424 | const acl::db_row* first_row = rows[0]; |
| 425 | acl_assert(first_row); |
| 426 | return first_row; |
| 427 | } |
| 428 | |
| 429 | void db_handle::free_result() |
| 430 | { |
no test coverage detected