1
我有這一段代碼SQLite的查詢
premios pre = new premios() { name = "premio1", link = "http://www.host.com/image.png" };
if (DB.CheckPremios(pre))
{//does stuff
}
和CheckPremios功能是這一個:
public bool CheckPremios(premios pre)
{
using (var db = new SQLiteConnection(dbPath))
{
var existing = db.Query<premios>("select * from premios where name =" + pre.name);
if (existing != null)
{
return true;
}
}
return false;
}
附加信息:沒有這樣的柱:premio1
它抱怨列「Premio1」不存在,所以「Premio1」不在列名稱...
是我的查詢錯誤?