PDO_ERR_NONE     1485 pdo/pdo_dbh.c  	REGISTER_PDO_CLASS_CONST_STRING("ERR_NONE",	PDO_ERR_NONE);
PDO_ERR_NONE       61 pdo/php_pdo_int.h 	strncpy(dbh->error_code, PDO_ERR_NONE, sizeof(PDO_ERR_NONE)); \
PDO_ERR_NONE       67 pdo/php_pdo_int.h #define PDO_STMT_CLEAR_ERR()	strcpy(stmt->error_code, PDO_ERR_NONE)
PDO_ERR_NONE       68 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 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       54 pdo_firebird/firebird_driver.c 			*error_code = PDO_ERR_NONE;
PDO_ERR_NONE       96 pdo_mysql/mysql_driver.c 		strcpy(*pdo_err, PDO_ERR_NONE);
PDO_ERR_NONE       50 pdo_sqlite/sqlite_driver.c 		strncpy(*pdo_err, PDO_ERR_NONE, sizeof(PDO_ERR_NONE));