Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
pdo /
Delete
Unzip
Name
Size
Permission
Date
Action
.libs
[ DIR ]
drwxr-xr-x
2024-03-12 14:29
tests
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
CREDITS
101
B
-rw-rw-r--
2022-10-31 11:36
Makefile.frag
1.25
KB
-rw-rw-r--
2022-10-31 11:36
Makefile.frag.w32
169
B
-rw-rw-r--
2022-10-31 11:36
config.m4
552
B
-rw-rw-r--
2022-10-31 11:36
config.w32
398
B
-rw-rw-r--
2022-10-31 11:36
pdo.c
8.8
KB
-rw-rw-r--
2022-10-31 11:36
pdo.lo
308
B
-rw-r--r--
2024-03-12 14:29
pdo.o
115.9
KB
-rw-r--r--
2024-03-12 14:29
pdo_dbh.c
46.63
KB
-rw-rw-r--
2022-10-31 11:36
pdo_dbh.lo
320
B
-rw-r--r--
2024-03-12 14:29
pdo_dbh.o
268.36
KB
-rw-r--r--
2024-03-12 14:29
pdo_sql_parser.c
15.38
KB
-rw-r--r--
2022-10-31 11:36
pdo_sql_parser.lo
341
B
-rw-r--r--
2024-03-12 14:29
pdo_sql_parser.o
120.66
KB
-rw-r--r--
2024-03-12 14:29
pdo_sql_parser.re
11.82
KB
-rw-rw-r--
2022-10-31 11:36
pdo_sqlstate.c
13.34
KB
-rw-rw-r--
2022-10-31 11:36
pdo_sqlstate.lo
335
B
-rw-r--r--
2024-03-12 14:29
pdo_sqlstate.o
89.61
KB
-rw-r--r--
2024-03-12 14:29
pdo_stmt.c
73.59
KB
-rw-rw-r--
2022-10-31 11:36
pdo_stmt.lo
323
B
-rw-r--r--
2024-03-12 14:29
pdo_stmt.o
328.29
KB
-rw-r--r--
2024-03-12 14:29
php_pdo.h
2.31
KB
-rw-rw-r--
2022-10-31 11:36
php_pdo_driver.h
24.32
KB
-rw-rw-r--
2022-10-31 11:36
php_pdo_error.h
1.78
KB
-rw-rw-r--
2022-10-31 11:36
php_pdo_int.h
2.84
KB
-rw-rw-r--
2022-10-31 11:36
Save
Rename
/* +----------------------------------------------------------------------+ | PHP Version 7 | +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.php.net/license/3_01.txt | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Author: Wez Furlong <wez@php.net> | +----------------------------------------------------------------------+ */ #ifndef PHP_PDO_ERROR_H #define PHP_PDO_ERROR_H #include "php_pdo_driver.h" PDO_API void pdo_handle_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt); #define PDO_DBH_CLEAR_ERR() do { \ strlcpy(dbh->error_code, PDO_ERR_NONE, sizeof(PDO_ERR_NONE)); \ if (dbh->query_stmt) { \ dbh->query_stmt = NULL; \ zval_ptr_dtor(&dbh->query_stmt_zval); \ } \ } while (0) #define PDO_STMT_CLEAR_ERR() strcpy(stmt->error_code, PDO_ERR_NONE) #define PDO_HANDLE_DBH_ERR() if (strcmp(dbh->error_code, PDO_ERR_NONE)) { pdo_handle_error(dbh, NULL); } #define PDO_HANDLE_STMT_ERR() if (strcmp(stmt->error_code, PDO_ERR_NONE)) { pdo_handle_error(stmt->dbh, stmt); } #endif /* PHP_PDO_ERROR_H */