PDO_ERR_NONE     1472 ext/pdo/pdo_dbh.c 	REGISTER_PDO_CLASS_CONST_STRING("ERR_NONE",	PDO_ERR_NONE);
PDO_ERR_NONE       29 ext/pdo/php_pdo_error.h 	strlcpy(dbh->error_code, PDO_ERR_NONE, sizeof(PDO_ERR_NONE)); \
PDO_ERR_NONE       35 ext/pdo/php_pdo_error.h #define PDO_STMT_CLEAR_ERR()    strcpy(stmt->error_code, PDO_ERR_NONE)
PDO_ERR_NONE       36 ext/pdo/php_pdo_error.h #define PDO_HANDLE_DBH_ERR()    if (strcmp(dbh->error_code, PDO_ERR_NONE)) { pdo_handle_error(dbh, NULL TSRMLS_CC); }
PDO_ERR_NONE       37 ext/pdo/php_pdo_error.h #define PDO_HANDLE_STMT_ERR()   if (strcmp(stmt->error_code, PDO_ERR_NONE)) { pdo_handle_error(stmt->dbh, stmt TSRMLS_CC); }
PDO_ERR_NONE       52 ext/pdo_firebird/firebird_driver.c 			*error_code = PDO_ERR_NONE;
PDO_ERR_NONE       96 ext/pdo_mysql/mysql_driver.c 		strcpy(*pdo_err, PDO_ERR_NONE);
PDO_ERR_NONE       50 ext/pdo_sqlite/sqlite_driver.c 		strncpy(*pdo_err, PDO_ERR_NONE, sizeof(PDO_ERR_NONE));