SQLite错误:为Mono.Data.Sqlite.SqliteStatement.BindParameter中的命令提供的参数不足

ldioqlga  于 2023-01-21  发布在  SQLite
关注(0)|答案(2)|浏览(189)

我对MonoDroid上的SQLite数据库中的表执行了一个简单的insert语句。
插入到数据库时,它显示
SQLite错误:为Mono. Data. Sqlite. SqliteStatement. BindParameter中的命令提供的参数不足
我认为要么是有bug,要么是错误信息有误导性。因为我只有5个参数,而我提供了5个参数,所以我看不出这是对的。
我的代码如下,任何帮助将不胜感激.

try
{
    using (var connection = new SqliteConnection(ConnectionString))
    {
        connection.Open();
        using (var command = connection.CreateCommand())
        {
            command.CommandTimeout = 0;
            command.CommandText = "INSERT INTO [User] (UserPK ,Name ,Password ,Category ,ContactFK) VALUES ( @UserPK , @Name , @Password , @Category , @ContactFK)";
            command.Parameters.Add(new SqliteParameter("@Name", "Has"));
            command.Parameters.Add(new SqliteParameter("@Password", "Has"));
            command.Parameters.Add(new SqliteParameter("@Cateogry", ""));
            command.Parameters.Add(new SqliteParameter("@ContactFK", DBNull.Value));
            command.Parameters.Add(new SqliteParameter("@UserPK", DbType.Guid) {Value = Guid.NewGuid()});
            var result = command.ExecuteNonQuery();
            return = result > 0 ;
        }
    }
}
catch (Exception exception)
{
    LogError(exception);
}
pgx2nnw8

pgx2nnw81#

INSERT语句中@Category的拼写与添加的参数不同。您有:

command.Parameters.Add(new SqliteParameter("@Cateogry", ""));
                                           ^^^^^^^^^^^
                                           //@Category

应在何处:
将您的陈述修改为:

command.Parameters.Add(new SqliteParameter("@Category", ""));
ijxebb2r

ijxebb2r2#

这一点已经得到正确回答,但我想补充一点,以了解进一步情况:
如果INSERT语句中的任何@参数的拼写与AddWithValue或.Add(new SqliteParameter...语句中的拼写不同,也会生成此特定SQLite错误字符串。

相关问题