From: Gavin Sinclair Date: 2002-10-17T23:53:19+09:00 Subject: Re: Date handling with DBI From: "Philipp Meier" > For now, I am resorting to storing my date information as strings in the > database. Does anyone know about the logistics of database-independent date > handling? I use DBI with Mysql and prepared statements: stm = dbh.prepare("intert into test values (?)") stm.execute(Time.now) -billy. Hmmm.... I can't test right now, but I'll give it a try. Just so this post is not a totally information-free zone, let me pass on a curious result. SQL> create table test_date (test DATE); SQL> insert into test_date values ('01-OCT-2002'); % ruby <