c7466541f8
We don't pass a single one because of Undefined function: pg_connect
17 linhas
354 B
PHP
17 linhas
354 B
PHP
<?php
|
|
// optional functions
|
|
|
|
include('config.inc');
|
|
|
|
$db = pg_connect($conn_str);
|
|
$enc = pg_client_encoding($db);
|
|
|
|
pg_set_client_encoding($db, $enc);
|
|
|
|
if (function_exists('pg_set_error_verbosity')) {
|
|
pg_set_error_verbosity(PGSQL_ERRORS_TERSE);
|
|
pg_set_error_verbosity(PGSQL_ERRORS_DEFAULT);
|
|
pg_set_error_verbosity(PGSQL_ERRORS_VERBOSE);
|
|
}
|
|
echo "OK";
|
|
?>
|