在mono_data . SQLite . sqlitestatement . bindparameter命令中提供的参

本文关键字:命令 bindparameter mono data SQLite sqlitestatement | 更新日期: 2023-09-27 18:11:21

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

插入到数据库时,它说

SQLite错误在mono_data . SQLite . sqlitestatement . bindparameter

我认为这要么是一个错误,要么是错误信息误导。因为我只有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);
}

在mono_data . SQLite . sqlitestatement . bindparameter命令中提供的参

INSERT语句中@Category的拼写与添加的参数不一致。你有:

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

实际位置:

修改语句为:

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

这个问题已经得到了正确的回答,但我想补充一点,以进一步了解:

这个特定的SQLite错误字符串也可以生成,如果任何@Parameters在INSERT语句中与AddWithValue或。add (new SqliteParameter…语句。