SQLiteDataReader 需要 using
否则其他无法读取
而且 sqlite 判断表是否存在应该:
string.Format("select count(*) from sqlite_master where tbl_name='{0}'" , strTable);
tbl_name
不是什么 table!!!
SQLiteDataReader 需要 using
否则其他无法读取
而且 sqlite 判断表是否存在应该:
string.Format("select count(*) from sqlite_master where tbl_name='{0}'" , strTable);
tbl_name
不是什么 table!!!
转载于:https://www.cnblogs.com/norsd/archive/2012/09/04/6359453.html