SQLite——C#查询表时 该字符串未被识别为有效的 DateTime 错误
一 查询的列数据类型为date,当它的值为空时,用查询语句select createdate from tb:
1)在SQLite数据库管理器SQLiteStudio能正常查询到。
2)在.net中,就会抛出异常:该字符串未被识别为有效的 DateTime 错误。
解决方法:把类型date改为varchar
异常详细信息: System.FormatException: 该字符串未被识别为有效的 DateTime。
解决方案:
在日期保存到Sqlite数据库时转换一个类型,比如:string _now = System.DateTime.Now.ToString(“s”);
也就是说在.ToString()方法中加一个s,即可解决日期读取错误的问题。
简单代码示例:
string _indate = Request[“indate”]; //输入的日期如:2009-2-21
DateTime _inTime = Convert.ToDateTime(_indate);
//如下是保存数据SQL语句
insert into 表(indate) values(‘“ + _inTime.ToString(“s”) + “‘); //这里转换
因为iso 8601的描述:(http://msdn.microsoft.com/zh-cn/library/ms187819.aspx )
给出了字符串示例:
* 2004-05-23T 14:25:10
* 2004-05-23T 14:25:10.487
所以Sqlite保存的日期要转为iso 8601标准字符串格式
使用 日期.ToString(“s”);这种方法转换成 iso 8601标准字符串格式了。