Home
last modified time | relevance | path

Searched refs:unquoted (Results 1 – 11 of 11) sorted by relevance

/PHP-7.4/ext/pdo/tests/
H A Dpdo_033.phpt18 $unquoted = ' !"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrst…
20 $quoted = $db->quote($unquoted);
22 $len = strlen($unquoted);
/PHP-7.4/ext/standard/tests/general_functions/
H A Dbug70157.phpt2 parse_ini_string() crashes on values starting with number or unquoted strings
/PHP-7.4/ext/pdo_dblib/
H A Ddblib_driver.c150 static int dblib_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quo… in dblib_handle_quoter() argument
171 if (unquoted[i] == '\'') ++*quotedlen; in dblib_handle_quoter()
186 if (unquoted[i] == '\'') { in dblib_handle_quoter()
190 *q++ = unquoted[i]; in dblib_handle_quoter()
/PHP-7.4/ext/pdo_mysql/
H A Dmysql_driver.c306 static int mysql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quo… in mysql_handle_quoter() argument
323 PDO_DBG_INF_FMT("unquoted=%.*s", (int)unquotedlen, unquoted); in mysql_handle_quoter()
327 *quotedlen = mysql_real_escape_string_quote(H->server, *quoted + 2, unquoted, unquotedlen, '\''); in mysql_handle_quoter()
333 *quotedlen = mysql_real_escape_string_quote(H->server, *quoted + 1, unquoted, unquotedlen, '\''); in mysql_handle_quoter()
/PHP-7.4/ext/pdo_oci/tests/
H A Dpdo_oci_quote1.phpt19 // The intent is that the fetched data be identical to the unquoted string.
/PHP-7.4/ext/pdo_firebird/
H A Dfirebird_driver.c243 static int firebird_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, /* {{{ … in firebird_handle_quoter() argument
259 for (co = unquoted; (co = strchr(co,'\'')); qcount++, co++); in firebird_handle_quoter()
266 for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { in firebird_handle_quoter()
/PHP-7.4/ext/pdo_oci/
H A Doci_driver.c361 static int oci_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quote… in oci_handle_quoter() argument
375 for (cu = unquoted; (cu = strchr(cu,'\'')); qcount++, cu++) in oci_handle_quoter()
383 for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { in oci_handle_quoter()
/PHP-7.4/ext/pdo_pgsql/
H A Dpgsql_driver.c321 static int pgsql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quo… in pgsql_handle_quoter() argument
330 escaped = PQescapeByteaConn(H->server, (unsigned char *)unquoted, unquotedlen, &tmp_len); in pgsql_handle_quoter()
342 *quotedlen = PQescapeStringConn(H->server, *quoted + 1, unquoted, unquotedlen, NULL); in pgsql_handle_quoter()
/PHP-7.4/ext/pdo/
H A Dphp_pdo_driver.h258 typedef int (*pdo_dbh_quote_func)(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **…
/PHP-7.4/ext/pdo_sqlite/
H A Dsqlite_driver.c234 static int sqlite_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **qu… in sqlite_handle_quoter() argument
237 sqlite3_snprintf(2*unquotedlen + 3, *quoted, "'%q'", unquoted); in sqlite_handle_quoter()
/PHP-7.4/ext/pdo_odbc/
H A Dodbc_driver.c263 static int odbc_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quot… in odbc_handle_quoter() argument

Completed in 47 milliseconds