mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Add $dbh->exec() method.
Rename $dbh->beginWork() to $dbh->beginTransaction().
This commit is contained in:
parent
a0b3e87003
commit
6cd27ff8be
2 changed files with 32 additions and 4 deletions
|
@ -99,7 +99,7 @@ typedef int (*pdo_dbh_close_func)(pdo_dbh_t *dbh TSRMLS_DC);
|
|||
typedef int (*pdo_dbh_prepare_func)(pdo_dbh_t *dbh, const char *sql, long sql_len, pdo_stmt_t *stmt, long options, zval *driver_options TSRMLS_DC);
|
||||
|
||||
/* execute a statement (that does not return a result set) */
|
||||
typedef int (*pdo_dbh_do_func)(pdo_dbh_t *dbh, const char *sql TSRMLS_DC);
|
||||
typedef int (*pdo_dbh_do_func)(pdo_dbh_t *dbh, const char *sql, int sql_len TSRMLS_DC);
|
||||
|
||||
/* quote a string */
|
||||
typedef int (*pdo_dbh_quote_func)(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen TSRMLS_DC);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue