0

我是编程界的新手,所以请原谅我的无知。

我想检索我刚刚插入的行的主键值。主键值是自动生成的。我想将该主键值作为外键插入到另一个表中。

这是在第一个表中插入数据的代码

Core.DB.DoQuery("insert into survey(id, title, detail, employerid, userid) values(@id, @title, @detail, @eid, @uid);", 
                Core.DB.SIP("title", surveyTitle.Text), 
                Core.DB.SIP("detail", surveyDetail.Text), 
                Core.DB.SIP("eid", LocalHelper.UserEmployerID()), 
                Core.DB.SIP("uid", LocalHelper.UserID()), 
                Core.DB.SIP("id", survey))

DoQuery在哪里

Shared Sub DoQuery(ByVal commandText As String, ByVal ParamArray params As SqlParameter())
        Dim conn As SqlConnection = Nothing

        Try
            conn = GetOpenSqlConnection()
            DoQuery(conn, commandText, params)
        Finally
            If conn IsNot Nothing Then conn.Dispose()
        End Try
    End Sub

在上面的代码中,作为主键的 id 是自动生成的。我想检索该值以将其插入surveyid到第二个表中。

Core.DB.DoQuery("insert into surveyquestioncategory(title, detail, surveyid) values(@title, @detail, @sid)", 
                Core.DB.SIP("title", categoryTitle.Text), 
                Core.DB.SIP("detail", categoryDetail.Text), 
                Core.DB.SIP("sid", Survey.ID))

并通过检索第二个表 wan 的 id 来在第三个表上插入值。

要检索最近插入的行的 id 值,我们可以使用

Core.DB.DoQuery("SELECT SCOPE_IDENTITY() AS MostRecentID")           

由于这是一个 Web 应用程序,并且多个用户同时使用该应用程序,因此可能SCOPE_IDENTITY()会返回错误行的值。如果是这样,我该如何避免呢?

请原谅我对编程的无知。

感谢你的帮助。

谢谢巴沙比

4

1 回答 1

1

使用OUTPUT语句,您可以在一个查询中执行此操作或为此创建过程

INSERT INTO survey (id, title, detail, employerid, userid) 
OUTPUT @title, @detail, inserted.ID INTO surveyquestioncategory (title, detail, surveyid)
VALUES (@id, @title, @detail, @eid, @uid);

来自 MSDN输出子句 (Transact-SQL)

于 2015-07-29T15:08:38.433 回答