在Mono.Data.Sqlite.SqliteStatement.BindParameter提供给

2019-09-01 08:10发布

我有一个简单的插入语句表在MonoDroid的SQLite数据库。

当插入到数据库中,它说

在Mono.Data.Sqlite.SqliteStatement.BindParameter提供给命令SQLite的误差参数不足

我认为有任何错误或错误信息误导。 因为我只有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);
}

Answer 1:

您的拼写@Category在INSERT语句是从添加的参数不同。 你有:

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

它应该是:

修改您的语句:

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


Answer 2:

这已经回答正确,但我想补充,进一步的信息:

如果有任何@参数都在INSERT语句VS的AddWithValue或。新增(新SqliteParameter ...语句拼写不同,也可以产生这种特殊的SQLite的错误字符串。



文章来源: SQLite error Insufficient parameters supplied to the command at Mono.Data.Sqlite.SqliteStatement.BindParameter