我正在尝试将对象中的数据插入我的sqlite数据库表中。尝试这样做时,我不断收到相同的错误。
当使用相同的技术将数据插入同一数据库的不同表(字)时,我能够成功插入数据而不会出现错误。这使我相信我的SQLiteConnection值'cnn'不是问题。我确保对象属性的名称以及表中的字段相同。在此特定表中没有主键,但是我不确定这是否是问题。
无效的代码:
using (IDbConnection cnn = new SQLiteConnection(connection))
{
foreach (bridgeRecord br in bridgeWords)
{
try
{
cnn.Execute("insert into bridge (engWord, spaWord, frequency, wordClass) values (@engWord, @spaWord, @frequency, @wordClass)", br);
}
catch (SQLiteException ex)
{
Console.WriteLine(ex);
}
}
}
有效的代码:
using (IDbConnection cnn = new SQLiteConnection(connection))
{
foreach (Word w in words)
{
try
{
cnn.Execute("insert into words (word, wordSimplified, confidence, difficulty, wordClass, wordCategory, dateTestedLast, popularity, language) " +
"values (@word, @wordSimplified, @confidence, @difficulty, @wordClass, @wordCategory, @dateTestedLast, @popularity, @language)", w);
}
catch (SQLiteException ex)
{
wordsBouncedBack.Add(w.word);
continue;
}
}
}
“ bridgeRecord”类模型如下:
class bridgeRecord
{
public string engWord;
public string spaWord;
public int frequency;
public string wordClass;
}
这是我收到的错误:
code = Unknown (-1), message = System.Data.SQLite.SQLiteException (0x80004005): unknown error
Insufficient parameters supplied to the command
at System.Data.SQLite.SQLiteStatement.BindParameter(Int32 index, SQLiteParameter param)
我希望'bridgeRecord'对象提供要插入的参数,但事实并非如此。尽管“ Word”对象似乎提供的参数恰好使我感到困惑。
任何帮助将不胜感激。这是我的第一个堆栈溢出问题,如果答案非常明显,很抱歉:)
答案 0 :(得分:0)
在评论中采纳了Pascal的建议,我使用了command.parameters.add方法来解决我的问题。我事先准备了语句,然后将参数添加到正确的位置。现在的最终代码如下:
SQLiteCommand command = new SQLiteCommand("insert into bridge (id, engWord, spaWord, frequency, wordClass) values (@id, @engWord, @spaWord, @frequency, @wordClass)",cnn);
command.Parameters.AddWithValue("@id", br.engWord + br.spaWord + br.frequency + br.wordClass);
command.Parameters.AddWithValue("@engWord", br.engWord);
command.Parameters.AddWithValue("@spaWord", br.spaWord);
command.Parameters.AddWithValue("@frequency", br.frequency);
command.Parameters.AddWithValue("@wordClass", br.wordClass);
command.ExecuteNonQuery();
最好找到一个使代码能够像其他INSERT语句一样工作的修补程序,但是这种解决方法就足够了。