mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Added async query functions
This commit is contained in:
parent
b11d1eb440
commit
db8bb9f23c
2 changed files with 294 additions and 3 deletions
|
@ -94,6 +94,12 @@ PHP_FUNCTION(pg_end_copy);
|
|||
PHP_FUNCTION(pg_client_encoding);
|
||||
PHP_FUNCTION(pg_set_client_encoding);
|
||||
#endif
|
||||
PHP_FUNCTION(pg_reset);
|
||||
PHP_FUNCTION(pg_status);
|
||||
PHP_FUNCTION(pg_send_query);
|
||||
PHP_FUNCTION(pg_request_cancel);
|
||||
PHP_FUNCTION(pg_get_result);
|
||||
PHP_FUNCTION(pg_is_busy);
|
||||
|
||||
void php_pgsql_do_connect(INTERNAL_FUNCTION_PARAMETERS,int persistent);
|
||||
int php_pgsql_get_default_link(INTERNAL_FUNCTION_PARAMETERS);
|
||||
|
@ -102,7 +108,7 @@ void php_pgsql_get_result_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type);
|
|||
char *get_field_name(PGconn *pgsql, Oid oid, HashTable *list);
|
||||
void php_pgsql_get_field_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type);
|
||||
void php_pgsql_data_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type);
|
||||
|
||||
void php_pgsql_do_async(INTERNAL_FUNCTION_PARAMETERS,int entry_type);
|
||||
|
||||
typedef struct pgLofp {
|
||||
PGconn *conn;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue