今天打包WPF程序,安装后总是打不开,查看监控日志原来是SQLite的问题,报错如图 当向SQLite数据库中存入新纪录时总是显示attempt to write a readonly a database. 冷静的分析一下:首先数据库我没有设定只读,而且通过sqlite3.exe可以实现CRUD(Create Read Update Delete)操作, 应该不是数据库的问题:其次程序在我的机器上可以用,说明代码没有问题,那么最有可能的问题就是系统权限问题了. 解决办法:控制面板->文件夹选项
参考了很多SQLITE数据库多线程的解决办法 我自己写了一个SQLITEHELPER 来解决这个问题 希望大家多多指教 调用的时候 SQLLiteDBHelper _SQLLiteDBHelper = new SQLLiteDBHelper(); _SQLLiteDBHelper.Dispose(); using System; using System.Collections.Generic; using System.Text; using System.Data; using Syst
How do I list all tables/indices contained in an SQLite database If you are running the sqlite3 command-line access program you can type ".tables" to get a list of all tables. Or you can type ".schema" to see the complete database sche