Lines Matching refs:errstatus

194 	sword errstatus;  in PHP_INI_END()  local
198 errstatus = OCIEnvNlsCreate(&OCI_G(env), PHP_OCI_INIT_MODE, 0, NULL, NULL, NULL, 0, NULL, 0, 0); in PHP_INI_END()
200 if (errstatus == OCI_ERROR) { in PHP_INI_END()
217 errstatus = OCIHandleAlloc (OCI_G(env), (dvoid **)&OCI_G(err), OCI_HTYPE_ERROR, 0, NULL); in PHP_INI_END()
219 if (errstatus != OCI_SUCCESS) { in PHP_INI_END()
229 if (errstatus == OCI_SUCCESS_WITH_INFO) { in PHP_INI_END()
632 sb4 php_oci_error(OCIError *err_p, sword errstatus) in php_oci_error() argument
637 switch (errstatus) { in php_oci_error()
677 php_error_docref(NULL, E_WARNING, "Unknown OCI error code: %d", errstatus); in php_oci_error()
683 DTRACE_OCI8_ERROR((int)errstatus, (long)errcode); in php_oci_error()
718 sword errstatus; in php_oci_fetch_sqltext_offset() local
722 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)statement->stmt, OCI_HTYPE_STMT, (dvoid *) sq… in php_oci_fetch_sqltext_offset()
724 if (errstatus != OCI_SUCCESS) { in php_oci_fetch_sqltext_offset()
725 statement->errcode = php_oci_error(statement->err, errstatus); in php_oci_fetch_sqltext_offset()
730 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)statement->stmt, OCI_HTYPE_STMT, (ub2 *)error… in php_oci_fetch_sqltext_offset()
732 if (errstatus != OCI_SUCCESS) { in php_oci_fetch_sqltext_offset()
733 statement->errcode = php_oci_error(statement->err, errstatus); in php_oci_fetch_sqltext_offset()
1209 sword errstatus; in php_oci_connection_ping() local
1217 PHP_OCI_CALL_RETURN(errstatus, OCIPing, (connection->svc, OCI_G(err), OCI_DEFAULT)); in php_oci_connection_ping()
1219 if (errstatus == OCI_SUCCESS) { in php_oci_connection_ping()
1244 sword errstatus; in php_oci_connection_status() local
1247 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)connection->server, OCI_HTYPE_SERVER, (dvoid … in php_oci_connection_status()
1249 if (errstatus == OCI_SUCCESS && ss == OCI_SERVER_NORMAL) { in php_oci_connection_status()
1264 sword errstatus; in php_oci_connection_rollback() local
1266 PHP_OCI_CALL_RETURN(errstatus, OCITransRollback, (connection->svc, connection->err, (ub4) 0)); in php_oci_connection_rollback()
1269 if (errstatus != OCI_SUCCESS) { in php_oci_connection_rollback()
1270 connection->errcode = php_oci_error(connection->err, errstatus); in php_oci_connection_rollback()
1285 sword errstatus; in php_oci_connection_commit() local
1287 PHP_OCI_CALL_RETURN(errstatus, OCITransCommit, (connection->svc, connection->err, (ub4) 0)); in php_oci_connection_commit()
1290 if (errstatus != OCI_SUCCESS) { in php_oci_connection_commit()
1291 connection->errcode = php_oci_error(connection->err, errstatus); in php_oci_connection_commit()
1482 sword errstatus; in php_oci_password_change() local
1484 …PHP_OCI_CALL_RETURN(errstatus, OCIPasswordChange, (connection->svc, connection->err, (text *)user,… in php_oci_password_change()
1486 if (errstatus != OCI_SUCCESS) { in php_oci_password_change()
1487 connection->errcode = php_oci_error(connection->err, errstatus); in php_oci_password_change()
1520 sword errstatus; in php_oci_server_get_version() local
1522 …PHP_OCI_CALL_RETURN(errstatus, OCIServerVersion, (connection->svc, connection->err, (text *)versio… in php_oci_server_get_version()
1524 if (errstatus != OCI_SUCCESS) { in php_oci_server_get_version()
1525 connection->errcode = php_oci_error(connection->err, errstatus); in php_oci_server_get_version()
1709 sword errstatus; in php_oci_fetch_row() local
1712 PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)invokedstatement->stmt, OCI_HTYPE_STMT, in php_oci_fetch_row()
1715 if (errstatus) { in php_oci_fetch_row()
1849 sword errstatus; in php_oci_create_spool() local
1874 …PHP_OCI_CALL_RETURN(errstatus, OCIHandleAlloc, (session_pool->env, (dvoid **) &session_pool->poolh… in php_oci_create_spool()
1876 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
1877 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
1886 …PHP_OCI_CALL_RETURN(errstatus, OCIHandleAlloc, ((dvoid *) session_pool->env, (dvoid **)&(session_p… in php_oci_create_spool()
1888 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
1889 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
1898 …PHP_OCI_CALL_RETURN(errstatus, OCIHandleAlloc, (session_pool->env, (dvoid **)&(spoolAuth), OCI_HTY… in php_oci_create_spool()
1900 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
1901 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
1909 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrSet, ((dvoid *) spoolAuth, (ub4) OCI_HTYPE_AUTHINFO, (dvoid … in php_oci_create_spool()
1911 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
1912 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
1920 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrSet, ((dvoid *) spoolAuth, (ub4) OCI_HTYPE_AUTHINFO, (dvoid … in php_oci_create_spool()
1922 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
1923 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
1930 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrSet, ((dvoid *) (session_pool->poolh),(ub4) OCI_HTYPE_SPOOL,… in php_oci_create_spool()
1932 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
1933 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
1942 …PHP_OCI_CALL_RETURN(errstatus, OCISessionPoolCreate,(session_pool->env, OCI_G(err), session_pool->… in php_oci_create_spool()
1944 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
1945 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()