| 396 | } |
| 397 | |
| 398 | const std::vector<const db_row*>* db_handle::get_rows( |
| 399 | const char* name, const char* value) |
| 400 | { |
| 401 | if (result_ == NULL) { |
| 402 | return NULL; |
| 403 | } |
| 404 | const std::vector<const db_row*>& rows = result_->get_rows(name, value); |
| 405 | return &rows; |
| 406 | } |
| 407 | |
| 408 | const std::vector<db_row*>* db_handle::get_rows() const |
| 409 | { |
no outgoing calls
no test coverage detected