diff options
Diffstat (limited to 'ext/pdo/php_pdo_driver.h')
| -rwxr-xr-x | ext/pdo/php_pdo_driver.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/pdo/php_pdo_driver.h b/ext/pdo/php_pdo_driver.h index a0f9ac16ab..63b2026466 100755 --- a/ext/pdo/php_pdo_driver.h +++ b/ext/pdo/php_pdo_driver.h @@ -43,6 +43,7 @@ enum pdo_param_type { PDO_PARAM_STR, PDO_PARAM_LOB, PDO_PARAM_STMT, /* hierarchical result set */ + PDO_PARAM_DBL, }; enum pdo_fetch_type { @@ -331,6 +332,8 @@ struct pdo_bound_param_data { int is_param; /* parameter or column ? */ }; +#define PDO_BOUND_PARAM_INIT { -1, NULL, 0 } + /* represents a prepared statement */ struct _pdo_stmt_t { /* driver specifics */ |
