mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
ext/pdo_sqlite: adding Pdo_Sqlite::ATTR_BUSY_STATEMENT
allow to check if a statement is still running before reusage. close GH-18804
This commit is contained in:
parent
8a3201d91e
commit
53231a81dd
11 changed files with 58 additions and 23 deletions
|
@ -73,7 +73,8 @@ extern const struct pdo_stmt_methods sqlite_stmt_methods;
|
|||
enum {
|
||||
PDO_SQLITE_ATTR_OPEN_FLAGS = PDO_ATTR_DRIVER_SPECIFIC,
|
||||
PDO_SQLITE_ATTR_READONLY_STATEMENT,
|
||||
PDO_SQLITE_ATTR_EXTENDED_RESULT_CODES
|
||||
PDO_SQLITE_ATTR_EXTENDED_RESULT_CODES,
|
||||
PDO_SQLITE_ATTR_BUSY_STATEMENT
|
||||
};
|
||||
|
||||
typedef int pdo_sqlite_create_collation_callback(void*, int, const void*, int, const void*);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue