William Drago <[email protected]> wrote: > I am using SQLite with C# and am having trouble with SQLite > DATETIME types. The following error occurs when trying to > read rows from a table that contains dates (e.g. "12/09/2012 > 22:51:24"). (I am using a SQLiteDataReader to put query > results into a C# DataTable.)
Change your date format to '2012-12-09 22:51:24'. For more details, see http://sqlite.org/lang_datefunc.html "Time Strings" section. -- Igor Tandetnik _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

