mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix PostgreSQL build
This commit is contained in:
parent
8224207b26
commit
dc0a5f9c24
2 changed files with 64 additions and 64 deletions
|
@ -60,38 +60,38 @@ extern zend_module_entry pgsql_module_entry;
|
|||
|
||||
PHP_MINIT_FUNCTION(pgsql);
|
||||
PHP_RINIT_FUNCTION(pgsql);
|
||||
PHP_FUNCTION(pgsql_connect);
|
||||
PHP_FUNCTION(pgsql_pconnect);
|
||||
PHP_FUNCTION(pgsql_close);
|
||||
PHP_FUNCTION(pgsql_dbname);
|
||||
PHP_FUNCTION(pgsql_error_message);
|
||||
PHP_FUNCTION(pgsql_options);
|
||||
PHP_FUNCTION(pgsql_port);
|
||||
PHP_FUNCTION(pgsql_tty);
|
||||
PHP_FUNCTION(pgsql_host);
|
||||
PHP_FUNCTION(pgsql_exec);
|
||||
PHP_FUNCTION(pgsql_num_rows);
|
||||
PHP_FUNCTION(pgsql_num_fields);
|
||||
PHP_FUNCTION(pgsql_cmdtuples);
|
||||
PHP_FUNCTION(pgsql_field_name);
|
||||
PHP_FUNCTION(pgsql_field_size);
|
||||
PHP_FUNCTION(pgsql_field_type);
|
||||
PHP_FUNCTION(pgsql_field_number);
|
||||
PHP_FUNCTION(pgsql_result);
|
||||
PHP_FUNCTION(pgsql_fetch_row);
|
||||
PHP_FUNCTION(pgsql_fetch_array);
|
||||
PHP_FUNCTION(pgsql_fetch_object);
|
||||
PHP_FUNCTION(pgsql_data_length);
|
||||
PHP_FUNCTION(pgsql_data_isnull);
|
||||
PHP_FUNCTION(pgsql_free_result);
|
||||
PHP_FUNCTION(pgsql_last_oid);
|
||||
PHP_FUNCTION(pgsql_lo_create);
|
||||
PHP_FUNCTION(pgsql_lo_unlink);
|
||||
PHP_FUNCTION(pgsql_lo_open);
|
||||
PHP_FUNCTION(pgsql_lo_close);
|
||||
PHP_FUNCTION(pgsql_lo_read);
|
||||
PHP_FUNCTION(pgsql_lo_write);
|
||||
PHP_FUNCTION(pgsql_lo_readall);
|
||||
PHP_FUNCTION(pg_connect);
|
||||
PHP_FUNCTION(pg_pconnect);
|
||||
PHP_FUNCTION(pg_close);
|
||||
PHP_FUNCTION(pg_dbname);
|
||||
PHP_FUNCTION(pg_error_message);
|
||||
PHP_FUNCTION(pg_options);
|
||||
PHP_FUNCTION(pg_port);
|
||||
PHP_FUNCTION(pg_tty);
|
||||
PHP_FUNCTION(pg_host);
|
||||
PHP_FUNCTION(pg_exec);
|
||||
PHP_FUNCTION(pg_num_rows);
|
||||
PHP_FUNCTION(pg_num_fields);
|
||||
PHP_FUNCTION(pg_cmdtuples);
|
||||
PHP_FUNCTION(pg_field_name);
|
||||
PHP_FUNCTION(pg_field_size);
|
||||
PHP_FUNCTION(pg_field_type);
|
||||
PHP_FUNCTION(pg_field_number);
|
||||
PHP_FUNCTION(pg_result);
|
||||
PHP_FUNCTION(pg_fetch_row);
|
||||
PHP_FUNCTION(pg_fetch_array);
|
||||
PHP_FUNCTION(pg_fetch_object);
|
||||
PHP_FUNCTION(pg_data_length);
|
||||
PHP_FUNCTION(pg_data_isnull);
|
||||
PHP_FUNCTION(pg_free_result);
|
||||
PHP_FUNCTION(pg_last_oid);
|
||||
PHP_FUNCTION(pg_lo_create);
|
||||
PHP_FUNCTION(pg_lo_unlink);
|
||||
PHP_FUNCTION(pg_lo_open);
|
||||
PHP_FUNCTION(pg_lo_close);
|
||||
PHP_FUNCTION(pg_lo_read);
|
||||
PHP_FUNCTION(pg_lo_write);
|
||||
PHP_FUNCTION(pg_lo_readall);
|
||||
|
||||
void php_pgsql_do_connect(INTERNAL_FUNCTION_PARAMETERS,int persistent);
|
||||
int php_pgsql_get_default_link(INTERNAL_FUNCTION_PARAMETERS);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue