Searched refs:PDO_ERR_NONE (Results 1 – 6 of 6) sorted by relevance
/PHP-8.1/ext/pdo/ |
H A D | php_pdo_error.h | 25 strlcpy(dbh->error_code, PDO_ERR_NONE, sizeof(PDO_ERR_NONE)); \ 31 #define PDO_STMT_CLEAR_ERR() strcpy(stmt->error_code, PDO_ERR_NONE) 32 #define PDO_HANDLE_DBH_ERR() if (strcmp(dbh->error_code, PDO_ERR_NONE)) { pdo_handle_error(dbh, … 33 #define PDO_HANDLE_STMT_ERR() if (strcmp(stmt->error_code, PDO_ERR_NONE)) { pdo_handle_error(stmt…
|
H A D | pdo_dbh.c | 1057 if(!strncmp(dbh->query_stmt->error_code, PDO_ERR_NONE, sizeof(PDO_ERR_NONE))) goto fill_array; in PHP_METHOD() 1060 if(!strncmp(dbh->error_code, PDO_ERR_NONE, sizeof(PDO_ERR_NONE))) goto fill_array; in PHP_METHOD() 1424 REGISTER_PDO_CLASS_CONST_STRING("ERR_NONE", PDO_ERR_NONE); in pdo_dbh_init()
|
H A D | php_pdo_driver.h | 154 #define PDO_ERR_NONE "00000" macro
|
H A D | pdo_stmt.c | 1554 if (strncmp(stmt->error_code, PDO_ERR_NONE, sizeof(PDO_ERR_NONE))) { in PHP_METHOD()
|
/PHP-8.1/ext/pdo_sqlite/ |
H A D | sqlite_driver.c | 47 strncpy(*pdo_err, PDO_ERR_NONE, sizeof(*pdo_err)); in _pdo_sqlite_error()
|
/PHP-8.1/ext/pdo_mysql/ |
H A D | mysql_driver.c | 104 strcpy(*pdo_err, PDO_ERR_NONE); in _pdo_mysql_error()
|
Completed in 31 milliseconds