Lines Matching refs:sql

5487 …sert(PGconn *pg_link, const zend_string *table, zval *var_array, zend_ulong opt, zend_string **sql)  in php_pgsql_insert()  argument
5591 *sql = querystr.s; in php_pgsql_insert()
5610 zend_string *sql = NULL; in PHP_FUNCTION() local
5642 if (php_pgsql_insert(pg_link, table, values, option|PGSQL_DML_STRING, &sql) == FAILURE) { in PHP_FUNCTION()
5645 pg_result = PQexec(pg_link, ZSTR_VAL(sql)); in PHP_FUNCTION()
5649 pg_result = PQexec(pg_link, ZSTR_VAL(sql)); in PHP_FUNCTION()
5651 efree(sql); in PHP_FUNCTION()
5683 } else if (php_pgsql_insert(pg_link, table, values, option, &sql) == FAILURE) { in PHP_FUNCTION()
5687 RETURN_STR(sql); in PHP_FUNCTION()
5757 …ink, const zend_string *table, zval *var_array, zval *ids_array, zend_ulong opt, zend_string **sql) in php_pgsql_update() argument
5814 *sql = querystr.s; in php_pgsql_update()
5831 zend_string *sql = NULL; in PHP_FUNCTION() local
5860 if (php_pgsql_update(pg_link, table, values, ids, option, &sql) == FAILURE) { in PHP_FUNCTION()
5864 RETURN_STR(sql); in PHP_FUNCTION()
5871 …lete(PGconn *pg_link, const zend_string *table, zval *ids_array, zend_ulong opt, zend_string **sql) in php_pgsql_delete() argument
5914 *sql = querystr.s; in php_pgsql_delete()
5931 zend_string *sql; in PHP_FUNCTION() local
5959 if (php_pgsql_delete(pg_link, table, ids, option, &sql) == FAILURE) { in PHP_FUNCTION()
5963 RETURN_STR(sql); in PHP_FUNCTION()
6011 …ring *table, zval *ids_array, zval *ret_array, zend_ulong opt, long result_type, zend_string **sql) in php_pgsql_select() argument
6066 *sql = querystr.s; in php_pgsql_select()
6085 zend_string *sql = NULL; in PHP_FUNCTION() local
6120 if (php_pgsql_select(pg_link, table, ids, return_value, option, result_type, &sql) == FAILURE) { in PHP_FUNCTION()
6126 RETURN_STR(sql); in PHP_FUNCTION()