使用System.Data.Linq.Mapping并在sqlite db中自动递增主键时出错

时间:2015-07-28 01:00:43

标签: c# sql linq sqlite system.data.sqlite

我正在使用SQLiteSystem.Data.Linq.Mapping。我在使用linq映射属性id时遇到AUTOINCREMENT IsDbGenerated = true字段的问题。

创建表格的语法。我已经尝试过这种情况,有/没有AUTOINCREMENT

CREATE TABLE [TestTable] ([id] INTEGER  NOT NULL PRIMARY KEY AUTOINCREMENT,[title] TEXT  NULL)

我的TABLE类:

[Table(Name = "TestTable")]
public class TestTable
{
    [Column(IsPrimaryKey = true, IsDbGenerated =true)]
    public int id { get; set; }

    [Column]
    public string title { get; set; }
}

以下是我的称呼方式。当它提交时我收到错误,我会在此示例下面粘贴错误。需要注意的一件事是,如果我取出上面的IsDbGenerated =true并手动输入id,它确实插入正常,但我希望它AUTOINCREMENT并且出于某种原因{ {1}}正在杀死插入内容。寻求一些指导。

IsDbGenerated=true

错误讯息:

  

SQL逻辑错误或缺少数据库\ r \ nnene \" SELECT \&#34 ;:语法错误

堆栈追踪:

  

at System.Data.SQLite.SQLite3.Prepare(SQLiteConnection cnn,String   strSql,SQLiteStatement previous,UInt32 timeoutMS,String&   strRemain)\ r \ n at   System.Data.SQLite.SQLiteCommand.BuildNextCommand()\ r \ n at   System.Data.SQLite.SQLiteCommand.GetStatement(Int32 index)\ r \ n at   System.Data.SQLite.SQLiteDataReader.NextResult()\ r \ n at   System.Data.SQLite.SQLiteDataReader..ctor(SQLiteCommand cmd,   CommandBehavior表现)\ r \ n at   System.Data.SQLite.SQLiteCommand.ExecuteReader(的CommandBehavior   行为)\ r \ n at   System.Data.SQLite.SQLiteCommand.ExecuteDbDataReader(的CommandBehavior   行为)\ r \ n在System.Data.Common.DbCommand.ExecuteReader()\ r \ n中   在System.Data.Linq.SqlClient.SqlProvider.Execute(表达式查询,   QueryInfo queryInfo,IObjectReaderFactory factory,Object []   parentArgs,Object [] userArgs,ICompiledSubQuery [] subQueries,Object   lastResult)\ r \ n at   System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(表达式查询,   QueryInfo [] queryInfos,IObjectReaderFactory factory,Object []   userArguments,ICompiledSubQuery [] subQueries)\ r \ n at   System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(表达式   查询)\ r \ n at   System.Data.Linq.ChangeDirector.StandardChangeDirector.DynamicInsert(TrackedObject   项目)\ r \ n at   System.Data.Linq.ChangeDirector.StandardChangeDirector.Insert(TrackedObject   项目)\ r \ n at   System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode   failureMode)\ r \ n at   System.Data.Linq.DataContext.SubmitChanges(ConflictMode   在System.Data.Linq.DataContext.SubmitChanges()\ r \ n中的failureMode)\ r \ n   在Program.cs中的SqlLinq.Program.Main(String [] args):第29行"

以下是我在日志输出中看到的内容:

static void Main(string[] args)
{
    string connectionString = @"DbLinqProvider=Sqlite;Data Source = c:\pathToDB\test.s3db";
    SQLiteConnection connection = new SQLiteConnection(connectionString);
    DataContext db = new DataContext(connection);
    db.Log = new System.IO.StreamWriter(@"c:\pathToDB\mylog.log") { AutoFlush = true };

    var com = db.GetTable<TestTable>();
    com.InsertOnSubmit(new TestTable {title = "asdf2" });
    try {
        db.SubmitChanges();
    }
    catch(SQLiteException e)
    {
        Console.WriteLine(e.Data.ToString());
        Console.WriteLine(e.ErrorCode);
        Console.WriteLine(e.HelpLink);
        Console.WriteLine(e.InnerException);
        Console.WriteLine(e.Message);
        Console.WriteLine(e.StackTrace);
        Console.WriteLine(e.TargetSite);
        Console.WriteLine(e.ToString());
    }
    foreach (var TestTable in com)
    {
        Console.WriteLine("TestTable: {0} {1}", TestTable.id, TestTable.title);
    }
    Console.ReadKey();
}

3 个答案:

答案 0 :(得分:5)

根据SQLite文档(A column declared INTEGER PRIMARY KEY will AUTOINCREMENT.),只需在表创建中删除AUTOINCREMENT,编写integer primary key即可。 SQLite会自动增加您的ids

sqlite_cmd.CommandText = "CREATE TABLE [TestTable] ([id] INTEGER PRIMARY KEY NOT NULL , [title] TEXT)";

此外,您无需在IsDbGenerated = true课程中设置TestTable,也不需要手动输入id,只需插入title即可插入:

com.InsertOnSubmit(new TestTable { title = "asdf2" });//will automatically increment id.

修改: 您的TestTable现在应该如下所示:

[Table(Name = "TestTable")]
public class TestTable
{
    [Column(IsPrimaryKey = true)]
    public int? id { get; set; }

    [Column]
    public string title { get; set; }
}

SQLite Manager中的结果:

The result

答案 1 :(得分:1)

  

如何创建AUTOINCREMENT字段

简短回答:声明为INTEGER PRIMARY KEY的列会自动增量。

更长的答案:如果您将表的列声明为INTEGER PRIMARY KEY,那么无论何时在表的该列中插入NULL,NULL都会自动转换为整数,即一个大于该列中所有其他行的最大值,如果该表为空,则为1。或者,如果正在使用最大的现有整数密钥9223372036854775807,则随机选择未使用的密钥值。例如,假设您有一个这样的表:

CREATE TABLE t1(
  a INTEGER PRIMARY KEY,
  b INTEGER
);

使用此表,语句

INSERT INTO t1 VALUES(NULL,123);

在逻辑上等同于:

INSERT INTO t1 VALUES((SELECT max(a) FROM t1)+1,123);

有一个名为sqlite3_last_insert_rowid()的函数,它将返回最近插入操作的整数键。

  

请注意,整数键比最大键大1   在插入之前的表中。新密钥将是独一无二的   表中当前的所有键,但它可能与键重叠   先前已从表中删除。创建密钥   在表的生命周期内唯一,添加AUTOINCREMENT关键字   到INTEGER PRIMARY KEY声明。然后选择的钥匙将是   比该表中存在的最大密钥多一个。如果   那个表中以前存在的最大可能密钥   INSERT将失败,并显示SQLITE_FULL错误代码。

参考文献:

<强> Autoincrement in SQLite

<强> How to create Autoincrement Field ?

<强> SO post dealing with Autoincrement in SQLite

答案 2 :(得分:0)

SQLLite不能使用Linq命令来处理自动增量值 此命令产生错误

SELECT CONVERT(Int,SCOPE_IDENTITY()) AS [value]

你只有两种方式:

  1. 不要将Linq用于SQLLite。使用一些第三方解决方案,或您的 自己的命令。

  2. 使用其他方法来修改您的ID,因为它是由[实用程序]

  3. 编写的

    第一个更好,因为有其他SQL语句的例子通过Linq传递给sqlite,这些例子都是无效的。