Searched refs:paramtype (Results 1 - 11 of 11) sorted by relevance
| /PHP_5_3/ext/pdo/ |
| H A D | pdo_dbh.c | 1152 /* {{{ proto string PDO::quote(string string [, int paramtype]) 1153 quotes string for use in a query. The optional paramtype acts as a hint for drivers that have alternate quoting styles. The default value is PDO_PARAM_STR */ 1159 long paramtype = PDO_PARAM_STR; local 1163 if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &str, &str_len, ¶mtype)) { 1174 if (dbh->methods->quoter(dbh, str, str_len, &qstr, &qlen, paramtype TSRMLS_CC)) { 1251 ZEND_ARG_INFO(0, paramtype)
|
| H A D | php_pdo_driver.h | 251 typedef int (*pdo_dbh_quote_func)(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC);
|
| /PHP_5_3/ext/pdo_dblib/ |
| H A D | dblib_driver.c | 141 static int dblib_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC)
|
| /PHP_5_3/ext/pdo_firebird/ |
| H A D | firebird_driver.c | 278 char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC)
|
| /PHP_5_3/ext/pdo_mysql/ |
| H A D | mysql_driver.c | 330 static int mysql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC)
|
| /PHP_5_3/ext/pdo_oci/ |
| H A D | oci_driver.c | 369 static int oci_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC) /* {{{ */
|
| /PHP_5_3/ext/pdo_odbc/ |
| H A D | odbc_stmt.c | 344 P->paramtype = SQL_PARAM_INPUT_OUTPUT; 346 P->paramtype = SQL_PARAM_INPUT; 348 P->paramtype = SQL_PARAM_OUTPUT; 351 if (P->paramtype != SQL_PARAM_INPUT) { 362 if (PDO_PARAM_TYPE(param->param_type) == PDO_PARAM_LOB && P->paramtype != SQL_PARAM_INPUT) { 368 P->paramtype, ctype, sqltype, precision, scale, 369 P->paramtype == SQL_PARAM_INPUT ?
|
| H A D | php_pdo_odbc_int.h | 161 SQLSMALLINT paramtype; member in struct:__anon149
|
| /PHP_5_3/ext/pdo_pgsql/ |
| H A D | pgsql_driver.c | 308 static int pgsql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC) 314 switch (paramtype) {
|
| /PHP_5_3/ext/pdo_sqlite/ |
| H A D | sqlite_driver.c | 233 static int sqlite_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC)
|
| /PHP_5_3/ext/sqlite/ |
| H A D | pdo_sqlite2.c | 382 static int sqlite2_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC)
|
Completed in 16 milliseconds