Specific cast is not valid, while retrieving scope_identity(在检索 scope_identity 时,特定演员表无效)
问题描述
我收到异常:特定转换无效",这是代码
I am getting exception: "Specific cast is not valid", here is the code
con.Open();
string insertQuery = @"Insert into Tender (Name, Name1, Name2) values ('Val1','Val2','Val3');Select Scope_Identity();";
SqlCommand cmd = new SqlCommand(insertQuery, con);
cmd.ExecuteNonQuery();
tenderId = (int)cmd.ExecuteScalar();
推荐答案
为了完整起见,您的代码示例存在三个问题.
In the interests of completeness, there are three issues with your code sample.
1) 您通过调用 ExecuteNonQuery
和 ExecuteScalar
执行了两次查询.因此,每次运行此函数时,您都将在表中插入两条记录.您的 SQL 虽然是两条不同的语句,但将一起运行,因此您只需要调用 ExecuteScalar
.
1) You are executing your query twice by calling ExecuteNonQuery
and ExecuteScalar
. As a result, you will be inserting two records into your table each time this function runs. Your SQL, while being two distinct statements, will run together and therefore you only need the call to ExecuteScalar
.
2) Scope_Identity()
返回一个小数.您可以对查询结果使用 Convert.ToInt32
,也可以将返回值转换为十进制然后转换为 int.
2) Scope_Identity()
returns a decimal. You can either use Convert.ToInt32
on the result of your query, or you can cast the return value to decimal and then to int.
3) 确保将您的连接和命令对象包装在 using
语句中,以便正确处理它们.
3) Be sure to wrap your connection and command objects in using
statements so they are properly disposed.
using (SqlConnection connection = new SqlConnection(connectionString))
{
using (SqlCommand command = new SqlCommand(sql, connection))
{
connection.Open();
int tenderId = (int)(decimal)command.ExecuteScalar();
}
}
这篇关于在检索 scope_identity 时,特定演员表无效的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在检索 scope_identity 时,特定演员表无效
基础教程推荐
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 如何激活MC67中的红灯 2022-01-01
- 将 XML 转换为通用列表 2022-01-01