mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00

and pg_delete(). @ Added pg_metadate(), pg_convert(), pg_insert(), pg_select(), pg_update() @ and pg_delete(). (Yasuo)
13 lines
146 B
PHP
13 lines
146 B
PHP
<?php
|
|
error_reporting(E_ALL);
|
|
|
|
include 'config.inc';
|
|
|
|
$db = pg_connect($conn_str);
|
|
|
|
$meta = pg_metadata($db, $table_name);
|
|
|
|
var_dump($meta);
|
|
|
|
|
|
?>
|