Re: [Tutor] SQL Datetimes

2005-02-15 Thread Kent Johnson
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

Re: [Tutor] SQL Datetimes

2005-02-14 Thread Danny Yoo
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 > > (

[Tutor] SQL Datetimes

2005-02-14 Thread Bill Kranec
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