Searched refs:PQescapeStringConn (Results 1 – 4 of 4) sorted by relevance
/PHP-7.4/ext/pdo_pgsql/ |
H A D | config.m4 | 75 …AC_CHECK_LIB(pq, PQescapeStringConn,, AC_MSG_ERROR([Unable to build the PDO PostgreSQL driver: a n…
|
H A D | pgsql_driver.c | 342 *quotedlen = PQescapeStringConn(H->server, *quoted + 1, unquoted, unquotedlen, NULL); in pgsql_handle_quoter()
|
/PHP-7.4/ext/pgsql/ |
H A D | config.m4 | 92 AC_CHECK_LIB(pq, PQescapeStringConn, AC_DEFINE(HAVE_PQESCAPE_CONN,1,[PostgreSQL 8.1.4 or later]))
|
H A D | pgsql.c | 789 #define PQescapeStringConn(conn, to, from, len, error) PQescapeString(to, from, len) macro 821 new_len = PQescapeStringConn(conn, tmp, str, len, NULL); in php_pgsql_PQescapeInternal() 4399 ZSTR_LEN(to) = PQescapeStringConn(pgsql, ZSTR_VAL(to), ZSTR_VAL(from), ZSTR_LEN(from), NULL); 5573 new_len = PQescapeStringConn(pg_link, escaped, tmp_name2, strlen(tmp_name2), NULL); 5581 new_len = PQescapeStringConn(pg_link, escaped, tmp_name, strlen(tmp_name), NULL); 6104 …ZSTR_LEN(str) = PQescapeStringConn(pg_link, ZSTR_VAL(str), Z_STRVAL_P(val), Z_STRLEN_P(val), NULL); 6663 new_len = PQescapeStringConn(pg_link, tmp, Z_STRVAL_P(val), Z_STRLEN_P(val), NULL); 6828 size_t new_len = PQescapeStringConn(pg_link, tmp, Z_STRVAL_P(val), Z_STRLEN_P(val), NULL);
|
Completed in 42 milliseconds