1
0
mirror of https://github.com/danog/ext-pq.git synced 2024-11-30 04:19:49 +01:00
This commit is contained in:
Michael Wallner 2013-02-22 12:20:47 +01:00
parent f00254ec86
commit 0dfde4f273

View File

@ -2366,7 +2366,7 @@ static PHP_METHOD(pqconn, getResult) {
php_pqconn_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
if (!obj->intern) {
throw_exce(EX_UNINITIALIZED TSRMLS_CC, "pq\\Connectio not initialized");
throw_exce(EX_UNINITIALIZED TSRMLS_CC, "pq\\Connection not initialized");
} else {
PGresult *res = PQgetResult(obj->intern->conn);