Home
last modified time | relevance | path

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

/PHP-5.5/ext/pdo/tests/
H A Dpdo_033.phpt17 $unquoted = ' !"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrst…
19 $quoted = $db->quote($unquoted);
21 $len = strlen($unquoted);
/PHP-5.5/ext/pdo_dblib/
H A Ddblib_driver.c144 static int dblib_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted… in dblib_handle_quoter() argument
154 if (*unquoted == '\'') { in dblib_handle_quoter()
159 *q++ = *unquoted; in dblib_handle_quoter()
162 unquoted++; in dblib_handle_quoter()
/PHP-5.5/ext/pdo_firebird/
H A Dfirebird_driver.c275 static int firebird_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, /* {{{ */ in firebird_handle_quoter() argument
291 for (co = unquoted; (co = strchr(co,'\'')); qcount++, co++); in firebird_handle_quoter()
298 for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { in firebird_handle_quoter()
/PHP-5.5/ext/pdo_oci/tests/
H A Dpdo_oci_quote1.phpt19 // The intent is that the fetched data be identical to the unquoted string.
/PHP-5.5/ext/pdo_pgsql/
H A Dpgsql_driver.c320 static int pgsql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted… in pgsql_handle_quoter() argument
330 escaped = PQescapeByteaConn(H->server, (unsigned char *)unquoted, (size_t)unquotedlen, &tmp_len); in pgsql_handle_quoter()
332 escaped = PQescapeBytea((unsigned char *)unquoted, (size_t)unquotedlen, &tmp_len); in pgsql_handle_quoter()
346 *quotedlen = PQescapeString(*quoted + 1, unquoted, (size_t)unquotedlen); in pgsql_handle_quoter()
348 *quotedlen = PQescapeStringConn(H->server, *quoted + 1, unquoted, (size_t)unquotedlen, NULL); in pgsql_handle_quoter()
/PHP-5.5/ext/pdo_mysql/
H A Dmysql_driver.c302 static int mysql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted… in mysql_handle_quoter() argument
307 PDO_DBG_INF_FMT("unquoted=%.*s", unquotedlen, unquoted); in mysql_handle_quoter()
309 *quotedlen = mysql_real_escape_string(H->server, *quoted + 1, unquoted, unquotedlen); in mysql_handle_quoter()
/PHP-5.5/ext/pdo_oci/
H A Doci_driver.c371 static int oci_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, … in oci_handle_quoter() argument
385 for (cu = unquoted; (cu = strchr(cu,'\'')); qcount++, cu++) in oci_handle_quoter()
393 for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { in oci_handle_quoter()
/PHP-5.5/ext/pdo/
H A Dphp_pdo_driver.h251 typedef int (*pdo_dbh_quote_func)(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quo…
/PHP-5.5/ext/pdo_sqlite/
H A Dsqlite_driver.c233 static int sqlite_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quote… in sqlite_handle_quoter() argument
236 sqlite3_snprintf(2*unquotedlen + 3, *quoted, "'%q'", unquoted); in sqlite_handle_quoter()
/PHP-5.5/ext/pdo_odbc/
H A Dodbc_driver.c264 static int odbc_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted,… in odbc_handle_quoter() argument
/PHP-5.5/win32/
H A Dinstall.txt1293 ; any text on a line after an unquoted semicolon (;) is ignored
/PHP-5.5/
H A DINSTALL1632 ; any text on a line after an unquoted semicolon (;) is ignored
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt9887 string quoted = RE::QuoteMeta(unquoted);

Completed in 78 milliseconds