如何将 Scope_Identity() 转换为 Int?

发布于 2024-07-24 22:09:20 字数 246 浏览 7 评论 0原文

因此 Scope_Identity() 返回一个 ?-Byte 数字输入 SQL Server。

那并不了不起。

有没有一种安全的方法可以在选择查询中将其转换为 int,这样我们就不必在 ODBC 包装器中管理 SQL Server 的每一个突发奇想?

So Scope_Identity() returns an ?-Byte Numeric Type in SQL Server.

That is not awesome.

Is there a safe way to cast it to an int in a select query so we don't have to manage every whim of SQL Server in our ODBC Wrapper?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

汐鸠 2024-07-31 22:09:20

如果标识所属的源列是 Integer,则无需对其进行强制转换。 假设标识列一开始就是一个整数或者它适合一个“Int”,下面的代码就可以正常工作。

DECLARE @NewIdent Int
SET @NewIdent = SCOPE_IDENTITY()

If the source column to which the identity belongs is an Integer, there's no need to cast it. The following works just fine assuming the identity column is an Integer to begin with or it fits inside an "Int".

DECLARE @NewIdent Int
SET @NewIdent = SCOPE_IDENTITY()
万水千山粽是情ミ 2024-07-31 22:09:20
SELECT CAST( bigintcolumn AS int )

(前提是您知道它适合 32 位整数)

SELECT CAST( bigintcolumn AS int )

(Provided you know it will fit into a 32bit integer)

魂牵梦绕锁你心扉 2024-07-31 22:09:20

只需将其投射为:

select CAST(SCOPE_IDENTITY() as int)

以及您的数据层:

reader.GetInt32(0);

Just cast this like:

select CAST(SCOPE_IDENTITY() as int)

And your data Layer:

reader.GetInt32(0);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文