No output while using PEAR DB & formatted time-string - Mailing list pgsql-sql

From Marcus Krause
Subject No output while using PEAR DB & formatted time-string
Date
Msg-id bo03pg$1pva$1@news.hub.org
Whole thread Raw
Responses Re: No output while using PEAR DB & formatted time-string  (Marcus Krause <marcus.k79@expires-2003-11-30.arcornews.de>)
List pgsql-sql
I have a problem in using the to_char function in a SQL-Statement
and addressing it with DB_FETCHMODE_OBJECT under PEAR DB.

The follwing code is working fine unless I'm adding the to_char function:

--------------------------------------------------------------
require_once 'DB.php';
$dsn = $$$;
$db = DB::connect($dsn);
$db->setFetchMode(DB_FETCHMODE_OBJECT);

$query .= "SELECT news_id,to_char(news_time,'DD.MM.YYYY HH24:MI'), ";
$query .= "FROM News ";
$query .= "WHERE news_id=$var";
$sth = $db->query($query);

while($newsid_row=$sth->fetchRow()) {     print <<<HTML     $newsid_row->news_id<br>  <!-- there's an output -->
$newsid_row->news_time<br><!-- there's no output -->     blabla
 
HTML;
}
$db->disconnect();

--------------------------------------------------------------

Has anybody an idea to get this working or similar experiences?

Thanks for your patience; could be the wrong newsgroup!?



pgsql-sql by date:

Previous
From: razorbak71@yahoo.com (Razorbak71)
Date:
Subject: SQL to PLC to diverter gate, can this be done?
Next
From: Jamie Lawrence
Date:
Subject: Re: Problems with NEW.* in triggers