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 异常
基础教程推荐
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- 在 SQL 中连接多个表 2021-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- 是否可以执行按位分组功能? 2021-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- 无法解决整理冲突 2021-01-01
