在我的项目中,我使用
System.Data.SQLite.数据库有表格标签,其中包含自动增量主要字段ID(类型为整数).我写的时候:
using (sqliteCommand command = conn.CreateCommand()) { command.CommandText = "insert into Tags(name) values(@name) returning into @id"; command.Parameters.Add("@id",DbType.Int32).Direction = ParameterDirection.Output; command.ExecuteNonQuery(); }
在线发生错误:
command.Parameters.Add("@id",DbType.Int32).Direction = ParameterDirection.Output;
解决方法
我找到了工作查询:
SELECT last_insert_rowid()