SQLite .net

前端之家收集整理的这篇文章主要介绍了SQLite .net前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

sqliteDataReader 需要 using

否则其他无法读取


而且 sqlite 判断表是否存在应该:


string.Format("select count(*) from sqlite_master where tbl_name='{0}'",strTable);


tbl_name


不是什么 table!!!

猜你在找的Sqlite相关文章