What good is this function?
A quick example of the wall Im running into ->
$sql = 'INSERT INTO .....';
$result = pg_query($conn_id, $sql);
if ($result === false)
{
var_dump( pg_result_error( $result ) );
}
According to the manual, pg_result_error takes the result resource.
If that resource is boolean false for one reason or another, then
pg_result_error isn't useful.
Anyone has any other ideas, besides using
pg_last_error()?
Thanks
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php