Annotation of embedaddon/php/ext/pgsql/tests/12pg_insert_9.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: PostgreSQL pg_insert() (9.0+)
        !             3: --SKIPIF--
        !             4: <?php
        !             5: include("skipif.inc");
        !             6: skip_bytea_not_hex();
        !             7: ?>
        !             8: --FILE--
        !             9: <?php
        !            10: error_reporting(E_ALL);
        !            11: 
        !            12: include 'config.inc';
        !            13: 
        !            14: $db = pg_connect($conn_str);
        !            15: pg_query($db, "SET standard_conforming_strings = 0");
        !            16: 
        !            17: $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
        !            18: 
        !            19: pg_insert($db, $table_name, $fields) or print "Error in test 1\n";
        !            20: echo pg_insert($db, $table_name, $fields, PGSQL_DML_STRING)."\n";
        !            21: 
        !            22: echo "Ok\n";
        !            23: ?>
        !            24: --EXPECT--
        !            25: INSERT INTO "php_pgsql_test" ("num","str","bin") VALUES (1234,E'AAA',E'\\x424242');
        !            26: Ok

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