SQLite 3.8.2 exception on Update statement(更新语句上的 SQLite 3.8.2 异常)
问题描述
我刚刚更新了我的 Windows Phone 8 项目以使用最新版本的 SQLite.我确保更新 sqlite-net-wp8 包以及使用最新版本.
I just updated my Windows Phone 8 project to use the latest version of SQLite. I made sure to update the sqlite-net-wp8 package as well to use the latest version.
现在,当我执行更新语句时,我从数据库中得到一个异常:SQL 逻辑错误或缺少数据库
Now when I execute an update statement, I get an exception from the db: SQL logic error or missing database
这适用于 3.8.1.有什么办法可以回去吗?
This worked fine with 3.8.1. Is there any way I can go back?
推荐答案
如果您尝试卸载旧版本以使用它并且问题仍然存在,也许您可以通过查看您的查询来解决此问题...
If you try uninstall the old version to use it and the problem persist, maybe you can fix this looking at your Query...
在谷歌搜索我之前修复过的一个旧错误后,我发现了这个......
After googling with an old bug that I've fixed before, I found this ...
SQLite3::SQLException: SQL 逻辑错误或缺少数据库在通常的谷歌搜索并试图修复它之后,我才发现查询的问题是什么.
SQLite3::SQLException: SQL logic error or missing database After usual googling around and trying to fix it I just saw what the problem with the Query is.
这篇关于更新语句上的 SQLite 3.8.2 异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:更新语句上的 SQLite 3.8.2 异常


基础教程推荐
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- 带更新的 sqlite CTE 2022-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01