0000135: POST - IT ajout de post-it sur les opérations

This commit is contained in:
Dany De Bontridder 2010-11-27 01:29:08 +00:00
parent 94f37bb468
commit 06d05bff50
12 changed files with 126 additions and 6 deletions

View file

@ -114,11 +114,12 @@ class Database
{
try
{
$this->sql=$p_string;
$this->array=$p_array;
if ( $p_array==null )
{
$this->ret=@pg_query($this->db,$p_string);
$this->ret=@pg_query($this->db,$p_string);
}
else
{
@ -138,6 +139,7 @@ class Database
print_r($p_array);
echo $a->getMessage();
echo $a->getTrace();
echo pg_last_error($this->db);
}
throw ($a);
}