问题描述
在 Visual Studio 中使用 C#,我将一行插入到这样的表中:
Using C# in Visual Studio, I'm inserting a row into a table like this:
INSERT INTO foo (column_name)
VALUES ('bar')
我想做这样的事情,但我不知道正确的语法:
I want to do something like this, but I don't know the correct syntax:
INSERT INTO foo (column_name)
VALUES ('bar')
RETURNING foo_id
这将从新插入的行返回 foo_id 列.
This would return the foo_id column from the newly inserted row.
此外,即使我找到了正确的语法,我还有另一个问题:我可以使用 SqlDataReader 和 SqlDataAdapter.据我所知,前者用于读取数据,后者用于操作数据.在插入带有 return 语句的行时,我既在操作又在读取数据,所以我不确定该使用什么.也许我应该为此使用完全不同的东西?
Furthermore, even if I find the correct syntax for this, I have another problem: I have SqlDataReader and SqlDataAdapter at my disposal. As far as I know, the former is for reading data, the second is for manipulating data. When inserting a row with a return statement, I am both manipulating and reading data, so I'm not sure what to use. Maybe there's something entirely different I should use for this?
推荐答案
SCOPE_IDENTITY 返回插入到同一范围内的标识列中的最后一个标识值.范围是一个模块:存储过程、触发器、函数或批处理.因此,如果两条语句在同一个存储过程、函数或批处理中,则它们属于同一范围.
SCOPE_IDENTITY returns the last identity value inserted into an identity column in the same scope. A scope is a module: a stored procedure, trigger, function, or batch. Therefore, two statements are in the same scope if they are in the same stored procedure, function, or batch.
您可以使用 SqlCommand.ExecuteScalar 执行插入命令并在一个查询中检索新 ID.
You can use SqlCommand.ExecuteScalar to execute the insert command and retrieve the new ID in one query.
using (var con = new SqlConnection(ConnectionString)) {
int newID;
var cmd = "INSERT INTO foo (column_name)VALUES (@Value);SELECT CAST(scope_identity() AS int)";
using (var insertCommand = new SqlCommand(cmd, con)) {
insertCommand.Parameters.AddWithValue("@Value", "bar");
con.Open();
newID = (int)insertCommand.ExecuteScalar();
}
}
这篇关于使用 c# 从 SQL Server 插入命令返回值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)