Implemented PDO Driver specific SQL parsers

RFC: http://wiki.php.net/rfc/pdo_driver_specific_parsers
This commit is contained in:
Matteo Beccati 2024-04-23 15:43:52 +02:00
parent ac947925c0
commit 715b9aaa09
No known key found for this signature in database
31 changed files with 391 additions and 44 deletions

View file

@ -743,7 +743,8 @@ static const struct pdo_dbh_methods sqlite_methods = {
get_driver_methods,
pdo_sqlite_request_shutdown,
pdo_sqlite_in_transaction,
pdo_sqlite_get_gc
pdo_sqlite_get_gc,
pdo_sqlite_scanner
};
static char *make_filename_safe(const char *filename)