Hi David!
I just tested v036; works so far :-) except for getDate() :-(
When retrieving two rows, one with a NULL value and one with ISO 8601
compliant dates I now get 1970-01-01 for both.
--8><--
while(r.next())
{
...
System.out.println(r.getDate("Geburtsdatum"));
...
}
--><8--
produces
--8><--
1970-01-01
1970-01-01
--><8--
This is what I get on querying the DB through the CLI:
--8><--
sqlite> select Geburtsdatum from User where ID > 0;
Geburtsdatum
------------
1973-08-16
--><8--
Could this be due to getDate(String) still calling getDate(int,
Calendar)? I can't check right now because with v036 Eclipse refuses
to build the SQLiteJDBC project, but I'll try to get the Makefiles
running on Cygwin today...
--~--~---------~--~----~------------~-------~--~----~
Mailing List: http://groups.google.com/group/sqlitejdbc?hl=en
To unsubscribe, send email to [EMAIL PROTECTED]
-~----------~----~----~----~------~----~------~--~---