File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / pgsql / tests / config.inc
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Oct 14 08:02:28 2013 UTC (10 years, 9 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, HEAD
v 5.4.20

<?php
// These vars are used to connect db and create test table.
// values can be set to meet your environment

$conn_str = "host=localhost dbname=test port=5432";    // connection string
$table_name = "php_pgsql_test";  // test table that should be exist
$num_test_record = 1000;         // Number of records to create

$table_def = "CREATE TABLE php_pgsql_test (num int, str text, bin bytea);"; // Test table 
$field_name = "num";             // For pg_field_num()

?>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>