我正在使用SqliteManager在数据库中添加数据。
我必须使用下面的查询更新表,但它不会更新表数据。
SQLiteManager.sharedInstance().executeQuery("UPDATE Invoice SET is_void = '1',void_comment ='\(txtComment.text)',void_date = '\(currentDateTime)' WHERE invoice_id = '\(inVoiceNumber)'")
有人可以告诉我这个查询有什么问题或者我如何检查数据是否更新?
表格发票的结构
CREATE TABLE [Invoice]
(
[is_void] INT,
[void_comment] NVARCHAR(500),
[void_date] NVARCHAR(50),
[invoice_id] BIGINT,
)