C#操作SQLite資料庫時出現“Insufficient parameters supplied to the command”的錯誤

一劍平江湖發表於2014-07-22

將如下SQL語句:

insert into tbl_stock(Title,Barcode,Price)
values(@Title,@Barcode,@Price)
改成:
insert into tbl_stock(Title,Barcode,Price)
values(?,?,?)

注意:使用?代替@Title,其它等同。

相關文章