如何在sqlite中使用scope_identity

时间:2011-04-30 13:04:00

标签: sqlite

我有问题,当我在sqlite中使用scop_identity它显示像“select”附近的错误:语法错误...我写这样的查询

   string txtSQLQuery = "insert into  SerpTrak_Site (SiteName) values ('" + txturl.Text +   "')select scope_identity();";

此查询中有任何错误请帮助我......

2 个答案:

答案 0 :(得分:1)

两个查询之间缺少分号。

string txtSQLQuery = "insert into  SerpTrak_Site (SiteName) 
 values ('" + txturl.Text +   "'); select scope_identity();";

答案 1 :(得分:0)

SQLite没有名称为scope_identity

的函数

您可能正在寻找'SELECT last_insert_rowid()'

另请参阅此问题:Does SQLite support SCOPE_IDENTITY?