PDO_ERR_NONE     1488 ext/pdo/pdo_dbh.c 	REGISTER_PDO_CLASS_CONST_STRING("ERR_NONE",	PDO_ERR_NONE);
PDO_ERR_NONE       61 ext/pdo/php_pdo_int.h 	strlcpy(dbh->error_code, PDO_ERR_NONE, sizeof(PDO_ERR_NONE)); \
PDO_ERR_NONE       67 ext/pdo/php_pdo_int.h #define PDO_STMT_CLEAR_ERR()	strcpy(stmt->error_code, PDO_ERR_NONE)
PDO_ERR_NONE       68 ext/pdo/php_pdo_int.h #define PDO_HANDLE_DBH_ERR()	if (strcmp(dbh->error_code, PDO_ERR_NONE)) { pdo_handle_error(dbh, NULL TSRMLS_CC); }
PDO_ERR_NONE       69 ext/pdo/php_pdo_int.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));