last_err          218 ext/pdo_oci/oci_driver.c 		H->last_err = OCIServerDetach(H->server, H->err, OCI_DEFAULT);
last_err          219 ext/pdo_oci/oci_driver.c 		if (H->last_err) {
last_err          290 ext/pdo_oci/oci_driver.c 		H->last_err = OCIStmtPrepare(S->stmt, H->err, (text*)sql, sql_len, OCI_NTV_SYNTAX, OCI_DEFAULT);
last_err          295 ext/pdo_oci/oci_driver.c 		if (H->last_err) {
last_err          296 ext/pdo_oci/oci_driver.c 			H->last_err = oci_drv_error("OCIStmtPrepare");
last_err          307 ext/pdo_oci/oci_driver.c 		H->last_err = OCIAttrSet(S->stmt, OCI_HTYPE_STMT, &prefetch, 0,
last_err          309 ext/pdo_oci/oci_driver.c 		if (!H->last_err) {
last_err          311 ext/pdo_oci/oci_driver.c 			H->last_err = OCIAttrSet(S->stmt, OCI_HTYPE_STMT, &prefetch, 0,
last_err          337 ext/pdo_oci/oci_driver.c 	H->last_err = OCIStmtPrepare(stmt, H->err, (text*)sql, sql_len, OCI_NTV_SYNTAX, OCI_DEFAULT);
last_err          338 ext/pdo_oci/oci_driver.c 	if (H->last_err) {
last_err          339 ext/pdo_oci/oci_driver.c 		H->last_err = oci_drv_error("OCIStmtPrepare");
last_err          344 ext/pdo_oci/oci_driver.c 	H->last_err = OCIAttrGet(stmt, OCI_HTYPE_STMT, &stmt_type, 0, OCI_ATTR_STMT_TYPE, H->err);
last_err          354 ext/pdo_oci/oci_driver.c 	H->last_err = OCIStmtExecute(H->svc, stmt, H->err, 1, 0, NULL, NULL,
last_err          357 ext/pdo_oci/oci_driver.c 	if (H->last_err) {
last_err          358 ext/pdo_oci/oci_driver.c 		H->last_err = oci_drv_error("OCIStmtExecute");
last_err          361 ext/pdo_oci/oci_driver.c 		H->last_err = OCIAttrGet(stmt, OCI_HTYPE_STMT, &rowcount, 0, OCI_ATTR_ROW_COUNT, H->err);
last_err          419 ext/pdo_oci/oci_driver.c 	H->last_err = OCITransCommit(H->svc, H->err, 0);
last_err          421 ext/pdo_oci/oci_driver.c 	if (H->last_err) {
last_err          422 ext/pdo_oci/oci_driver.c 		H->last_err = oci_drv_error("OCITransCommit");
last_err          433 ext/pdo_oci/oci_driver.c 	H->last_err = OCITransRollback(H->svc, H->err, 0);
last_err          435 ext/pdo_oci/oci_driver.c 	if (H->last_err) {
last_err          436 ext/pdo_oci/oci_driver.c 		H->last_err = oci_drv_error("OCITransRollback");
last_err          450 ext/pdo_oci/oci_driver.c 			H->last_err = OCITransCommit(H->svc, H->err, 0);
last_err          452 ext/pdo_oci/oci_driver.c 			if (H->last_err) {
last_err          453 ext/pdo_oci/oci_driver.c 				H->last_err = oci_drv_error("OCITransCommit");
last_err          557 ext/pdo_oci/oci_driver.c 	H->last_err = OCIPing (H->svc, H->err, OCI_DEFAULT);
last_err          560 ext/pdo_oci/oci_driver.c 	H->last_err = OCIServerVersion (H->svc, H->err, (text *)version, sizeof(version), OCI_HTYPE_SVCCTX);
last_err          562 ext/pdo_oci/oci_driver.c 	if (H->last_err == OCI_SUCCESS) {
last_err          631 ext/pdo_oci/oci_driver.c 	H->last_err = OCIServerAttach(H->server, H->err, (text*)vars[1].optval,
last_err          634 ext/pdo_oci/oci_driver.c 	if (H->last_err) {
last_err          642 ext/pdo_oci/oci_driver.c 	H->last_err = OCIHandleAlloc(H->env, (dvoid**)&H->svc, OCI_HTYPE_SVCCTX, 0, NULL);
last_err          643 ext/pdo_oci/oci_driver.c 	if (H->last_err) {
last_err          648 ext/pdo_oci/oci_driver.c 	H->last_err = OCIHandleAlloc(H->env, (dvoid**)&H->session, OCI_HTYPE_SESSION, 0, NULL);
last_err          649 ext/pdo_oci/oci_driver.c 	if (H->last_err) {
last_err          655 ext/pdo_oci/oci_driver.c 	H->last_err = OCIAttrSet(H->svc, OCI_HTYPE_SVCCTX, H->server, 0, OCI_ATTR_SERVER, H->err);
last_err          656 ext/pdo_oci/oci_driver.c 	if (H->last_err) {
last_err          663 ext/pdo_oci/oci_driver.c 		H->last_err = OCIAttrSet(H->session, OCI_HTYPE_SESSION,
last_err          666 ext/pdo_oci/oci_driver.c 		if (H->last_err) {
last_err          674 ext/pdo_oci/oci_driver.c 		H->last_err = OCIAttrSet(H->session, OCI_HTYPE_SESSION,
last_err          677 ext/pdo_oci/oci_driver.c 		if (H->last_err) {
last_err          684 ext/pdo_oci/oci_driver.c 	H->last_err = OCISessionBegin(H->svc, H->err, H->session, OCI_CRED_RDBMS, OCI_DEFAULT);
last_err          685 ext/pdo_oci/oci_driver.c 	if (H->last_err) {
last_err          691 ext/pdo_oci/oci_driver.c 	H->last_err = OCIAttrSet(H->svc, OCI_HTYPE_SVCCTX, H->session, 0, OCI_ATTR_SESSION, H->err);
last_err          692 ext/pdo_oci/oci_driver.c 	if (H->last_err) {
last_err           38 ext/pdo_oci/oci_statement.c 		S->last_err = name params;										\
last_err           39 ext/pdo_oci/oci_statement.c 		S->last_err = _oci_error(S->err, stmt->dbh, stmt, #name, S->last_err, FALSE, __FILE__, __LINE__ TSRMLS_CC); \
last_err           40 ext/pdo_oci/oci_statement.c 		if (S->last_err) {												\
last_err           47 ext/pdo_oci/oci_statement.c 		S->last_err = name params;										\
last_err           48 ext/pdo_oci/oci_statement.c 		S->last_err = _oci_error(S->err, stmt->dbh, stmt, #name ": " #msg, S->last_err, FALSE, __FILE__, __LINE__ TSRMLS_CC); \
last_err           49 ext/pdo_oci/oci_statement.c 		if (S->last_err) {												\
last_err          456 ext/pdo_oci/oci_statement.c 	S->last_err = OCIStmtFetch2(S->stmt, S->err, 1, ociori, offset, OCI_DEFAULT);
last_err          458 ext/pdo_oci/oci_statement.c 	S->last_err = OCIStmtFetch(S->stmt, S->err, 1, OCI_FETCH_NEXT, OCI_DEFAULT);
last_err          461 ext/pdo_oci/oci_statement.c 	if (S->last_err == OCI_NO_DATA) {
last_err          466 ext/pdo_oci/oci_statement.c 	if (S->last_err == OCI_NEED_DATA) {
last_err          471 ext/pdo_oci/oci_statement.c 	if (S->last_err == OCI_SUCCESS_WITH_INFO || S->last_err == OCI_SUCCESS) {
last_err           39 ext/pdo_oci/php_pdo_oci_int.h 	sword		last_err;
last_err           64 ext/pdo_oci/php_pdo_oci_int.h 	sword		last_err;
last_err           90 ext/pdo_oci/php_pdo_oci_int.h #define oci_init_error(w)	_oci_error(H->err, dbh, NULL, w, H->last_err, TRUE, __FILE__, __LINE__ TSRMLS_CC)
last_err           91 ext/pdo_oci/php_pdo_oci_int.h #define oci_drv_error(w)	_oci_error(H->err, dbh, NULL, w, H->last_err, FALSE, __FILE__, __LINE__ TSRMLS_CC)
last_err           92 ext/pdo_oci/php_pdo_oci_int.h #define oci_stmt_error(w)	_oci_error(S->err, stmt->dbh, stmt, w, S->last_err, FALSE, __FILE__, __LINE__ TSRMLS_CC)