Lines Matching refs:result
17 $result = pg_prepare($db, "php_test", "SELECT * FROM ".$table_name." WHERE num > \$1;");
18 pg_result_error($result);
19 pg_free_result($result);
20 $result = pg_execute($db, "php_test", array(100));
21 if (!($rows = pg_num_rows($result)))
27 pg_fetch_array($result, $i, PGSQL_NUM);
31 pg_fetch_object($result);
35 pg_fetch_row($result, $i);
39 pg_fetch_result($result, $i, 0);
42 pg_result_error($result);
45 pg_field_name($result, 0);
46 pg_field_num($result, $field_name);
47 pg_field_size($result, 0);
48 pg_field_type($result, 0);
49 pg_field_prtlen($result, 0);
50 pg_field_is_null($result, 0);
52 $result = pg_prepare($db, "php_test2", "INSERT INTO ".$table_name." VALUES (\$1, \$2);");
53 pg_result_error($result);
54 pg_free_result($result);
55 $result = pg_execute($db, "php_test2", array(9999, "A'BC"));
56 pg_last_oid($result);
58 pg_free_result($result);