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!!!