Danny Yoo wrote:
On Mon, 14 Feb 2005, Bill Kranec wrote:
I'm using Kinterbasdb to access a Firebird database through Python, and
when I retrieve a row with a datetime value, I get a tuple like:
>>> myCursor.execute( 'SELECT * FROM table' )
>>> for row in myCursor.fetchall():
print row
(, 'v
On Mon, 14 Feb 2005, Bill Kranec wrote:
> I'm using Kinterbasdb to access a Firebird database through Python, and
> when I retrieve a row with a datetime value, I get a tuple like:
>
> >>> myCursor.execute( 'SELECT * FROM table' )
> >>> for row in myCursor.fetchall():
> print row
>
> (
Hello,
I'm using Kinterbasdb to access a Firebird database through Python, and
when I retrieve a row with a datetime value, I get a tuple like:
>>> myCursor.execute( 'SELECT * FROM table' )
>>> for row in myCursor.fetchall():
print row
(, 'value2',
'value3', 'value4', 100)
I would lik