我使用 NuGet Package Manage 来在我的Visual Basic 2015项目中安装SQLite包,以便我可以在我的应用程序中使用它。我面临的问题是我的应用程序中有一个子代码,其代码如下所示,我用来更新SQLite中的表,但它不会更新值。
AddErrors 是另一个子,它将try catch捕获的错误添加到同一个SQLite数据库但不同的表并且工作正常。你能告诉我我做错了吗?
我已经尝试了注释和未提交的代码,两者都没有更新数据库而且没有抛出任何错误。
read
我想要更新的表格具有以下结构。
$name
答案 0 :(得分:0)
OP解决方案。
我将代码更改为使用参数化查询,如下所示,它完美无缺。
var request = require('request')
request(
{ method: 'GET'
, uri: 'http://www.google.com'
, gzip: true
}
, function (error, response, body) {
// body is the decompressed response body
console.log('server encoded the data as: ' + (response.headers['content-encoding'] || 'identity'))
console.log('the decoded data is: ' + body)
}
)