| 400 | } |
| 401 | |
| 402 | const char* db_pgsql::get_error(void) const |
| 403 | { |
| 404 | if (conn_) { |
| 405 | return __dberror_message(conn_); |
| 406 | } else { |
| 407 | return "pgsql not opened yet!"; |
| 408 | } |
| 409 | } |
| 410 | |
| 411 | static acl_pthread_key_t __thread_key; |
| 412 |
no outgoing calls
no test coverage detected