Lines Matching refs:sql

5209 …sert(PGconn *pg_link, const zend_string *table, zval *var_array, zend_ulong opt, zend_string **sql)  in php_pgsql_insert()  argument
5313 *sql = querystr.s; in php_pgsql_insert()
5332 zend_string *sql = NULL; in PHP_FUNCTION() local
5362 if (php_pgsql_insert(pg_link, table, values, option|PGSQL_DML_STRING, &sql) == FAILURE) { in PHP_FUNCTION()
5365 pg_result = PQexec(pg_link, ZSTR_VAL(sql)); in PHP_FUNCTION()
5369 pg_result = PQexec(pg_link, ZSTR_VAL(sql)); in PHP_FUNCTION()
5371 efree(sql); in PHP_FUNCTION()
5403 } else if (php_pgsql_insert(pg_link, table, values, option, &sql) == FAILURE) { in PHP_FUNCTION()
5407 RETURN_STR(sql); in PHP_FUNCTION()
5477 …ink, const zend_string *table, zval *var_array, zval *ids_array, zend_ulong opt, zend_string **sql) in php_pgsql_update() argument
5534 *sql = querystr.s; in php_pgsql_update()
5551 zend_string *sql = NULL; in PHP_FUNCTION() local
5577 if (php_pgsql_update(pg_link, table, values, ids, option, &sql) == FAILURE) { in PHP_FUNCTION()
5581 RETURN_STR(sql); in PHP_FUNCTION()
5588 …lete(PGconn *pg_link, const zend_string *table, zval *ids_array, zend_ulong opt, zend_string **sql) in php_pgsql_delete() argument
5631 *sql = querystr.s; in php_pgsql_delete()
5648 zend_string *sql; in PHP_FUNCTION() local
5674 if (php_pgsql_delete(pg_link, table, ids, option, &sql) == FAILURE) { in PHP_FUNCTION()
5678 RETURN_STR(sql); in PHP_FUNCTION()
5726 …ring *table, zval *ids_array, zval *ret_array, zend_ulong opt, long result_type, zend_string **sql) in php_pgsql_select() argument
5774 *sql = querystr.s; in php_pgsql_select()
5792 zend_string *sql = NULL; in PHP_FUNCTION() local
5824 if (php_pgsql_select(pg_link, table, ids, return_value, option, result_type, &sql) == FAILURE) { in PHP_FUNCTION()
5830 RETURN_STR(sql); in PHP_FUNCTION()