Searched refs:paramtype (Results 1 – 11 of 11) sorted by relevance
/php-src/ext/pdo_sqlite/tests/ |
H A D | bug_47769.phpt | 17 public function quote($str, $paramtype = NULL): string|false {
|
/php-src/ext/pdo_odbc/ |
H A D | odbc_stmt.c | 367 P->paramtype = SQL_PARAM_INPUT_OUTPUT; in odbc_stmt_param_hook() 369 P->paramtype = SQL_PARAM_INPUT; in odbc_stmt_param_hook() 371 P->paramtype = SQL_PARAM_OUTPUT; in odbc_stmt_param_hook() 374 if (P->paramtype != SQL_PARAM_INPUT) { in odbc_stmt_param_hook() 385 if (PDO_PARAM_TYPE(param->param_type) == PDO_PARAM_LOB && P->paramtype != SQL_PARAM_INPUT) { in odbc_stmt_param_hook() 391 P->paramtype, ctype, sqltype, precision, scale, in odbc_stmt_param_hook() 392 P->paramtype == SQL_PARAM_INPUT ? in odbc_stmt_param_hook()
|
H A D | php_pdo_odbc_int.h | 156 SQLSMALLINT paramtype; member
|
/php-src/ext/pdo/tests/ |
H A D | bug_69356.phpt | 22 …arameters used (Params), the list of parameters, with their name, type (paramtype) as an integer, … 42 …arameters used (Params), the list of parameters, with their name, type (paramtype) as an integer, …
|
/php-src/ext/pdo_dblib/ |
H A D | dblib_driver.c | 145 …ng* dblib_handle_quoter(pdo_dbh_t *dbh, const zend_string *unquoted, enum pdo_param_type paramtype) in dblib_handle_quoter() argument 157 if ((paramtype & PDO_PARAM_STR_NATL) == PDO_PARAM_STR_NATL) { in dblib_handle_quoter() 160 if ((paramtype & PDO_PARAM_STR_CHAR) == PDO_PARAM_STR_CHAR) { in dblib_handle_quoter()
|
/php-src/ext/pdo_mysql/ |
H A D | mysql_driver.c | 308 …g* mysql_handle_quoter(pdo_dbh_t *dbh, const zend_string *unquoted, enum pdo_param_type paramtype ) in mysql_handle_quoter() argument 315 if ((paramtype & PDO_PARAM_LOB) == PDO_PARAM_LOB) { in mysql_handle_quoter() 321 if ((paramtype & PDO_PARAM_STR_NATL) == PDO_PARAM_STR_NATL) { in mysql_handle_quoter() 324 if ((paramtype & PDO_PARAM_STR_CHAR) == PDO_PARAM_STR_CHAR) { in mysql_handle_quoter()
|
/php-src/ext/pdo/ |
H A D | php_pdo_driver.h | 233 … (*pdo_dbh_quote_func)(pdo_dbh_t *dbh, const zend_string *unquoted, enum pdo_param_type paramtype);
|
H A D | pdo_dbh.c | 1267 zend_long paramtype = PDO_PARAM_STR; in PHP_METHOD() local 1272 Z_PARAM_LONG(paramtype) in PHP_METHOD() 1282 quoted = dbh->methods->quoter(dbh, str, paramtype); in PHP_METHOD()
|
/php-src/ext/pdo_pgsql/ |
H A D | pgsql_driver.c | 373 …ng* pgsql_handle_quoter(pdo_dbh_t *dbh, const zend_string *unquoted, enum pdo_param_type paramtype) in pgsql_handle_quoter() argument 382 switch (paramtype) { in pgsql_handle_quoter()
|
/php-src/ext/pdo_sqlite/ |
H A D | sqlite_driver.c | 223 …g* sqlite_handle_quoter(pdo_dbh_t *dbh, const zend_string *unquoted, enum pdo_param_type paramtype) in sqlite_handle_quoter() argument
|
/php-src/ext/pdo_firebird/ |
H A D | firebird_driver.c | 791 … firebird_handle_quoter(pdo_dbh_t *dbh, const zend_string *unquoted, enum pdo_param_type paramtype) in firebird_handle_quoter() argument
|
Completed in 29 milliseconds