/PHP-5.3/ext/pdo/tests/ |
H A D | pdo_033.phpt | 17 $unquoted = ' !"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrst… 19 $quoted = $db->quote($unquoted); 21 $len = strlen($unquoted);
|
/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… in dblib_handle_quoter() argument 151 if (*unquoted == '\'') { in dblib_handle_quoter() 156 *q++ = *unquoted; in dblib_handle_quoter() 159 unquoted++; in dblib_handle_quoter()
|
/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 **quot… in sqlite2_handle_quoter() argument 386 if (unquotedlen && (unquoted[0] == '\x01' || memchr(unquoted, '\0', unquotedlen) != NULL)) { in sqlite2_handle_quoter() 392 len = php_sqlite_encode_binary(unquoted, unquotedlen, ret+2); in sqlite2_handle_quoter() 400 ret = sqlite_mprintf("'%q'", unquoted); in sqlite2_handle_quoter()
|
/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… in pgsql_handle_quoter() argument 318 escaped = PQescapeByteaConn(H->server, unquoted, unquotedlen, &tmp_len); in pgsql_handle_quoter() 320 escaped = PQescapeBytea(unquoted, unquotedlen, &tmp_len); in pgsql_handle_quoter() 334 *quotedlen = PQescapeString(*quoted + 1, unquoted, unquotedlen); in pgsql_handle_quoter() 336 *quotedlen = PQescapeStringConn(H->server, *quoted + 1, unquoted, unquotedlen, NULL); in pgsql_handle_quoter()
|
/PHP-5.3/ext/pdo_firebird/ |
H A D | firebird_driver.c | 277 static int firebird_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, /* {{{ */ in firebird_handle_quoter() argument 293 for (co = unquoted; (co = strchr(co,'\'')); qcount++, co++); in firebird_handle_quoter() 300 for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { in firebird_handle_quoter()
|
/PHP-5.3/ext/pdo_oci/tests/ |
H A D | pdo_oci_quote1.phpt | 19 // The intent is that the fetched data be identical to the unquoted string.
|
/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, … in oci_handle_quoter() argument 383 for (cu = unquoted; (cu = strchr(cu,'\'')); qcount++, cu++) in oci_handle_quoter() 391 for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { in oci_handle_quoter()
|
/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… in mysql_handle_quoter() argument 335 PDO_DBG_INF_FMT("unquoted=%.*s", unquotedlen, unquoted); in mysql_handle_quoter() 337 *quotedlen = mysql_real_escape_string(H->server, *quoted + 1, unquoted, unquotedlen); in mysql_handle_quoter()
|
/PHP-5.3/ext/pdo/ |
H A D | php_pdo_driver.h | 251 typedef int (*pdo_dbh_quote_func)(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quo…
|
/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 **quote… in sqlite_handle_quoter() argument 236 sqlite3_snprintf(2*unquotedlen + 3, *quoted, "'%q'", unquoted); in sqlite_handle_quoter()
|
/PHP-5.3/ext/pdo_odbc/ |
H A D | odbc_driver.c | 264 static int odbc_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted,… in odbc_handle_quoter() argument
|
/PHP-5.3/win32/ |
H A D | install.txt | 1434 ; any text on a line after an unquoted semicolon (;) is ignored
|
/PHP-5.3/ |
H A D | INSTALL | 1632 ; any text on a line after an unquoted semicolon (;) is ignored
|
/PHP-5.3/ext/pcre/pcrelib/doc/ |
H A D | pcre.txt | 9346 string quoted = RE::QuoteMeta(unquoted);
|