$sql = "insert into my_table ...";
$rs = pg_query($rs);
var_dump($rs); // => tableresource(9) of type (pgsql result)
这是什么?目的?大批?我该如何使用它?
该行被插入到表中。
PHP 文档页面应该在这方面进行改进。该页面http://www.php.net/manual/en/function.pg-query.php说:
返回值 成功时为查询结果资源,失败时为 FALSE。
应该有一个链接结果资源来解释它是什么......