如何将 Scope_Identity() 转换为 Int?
因此 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果标识所属的源列是 Integer,则无需对其进行强制转换。 假设标识列一开始就是一个整数或者它适合一个“Int”,下面的代码就可以正常工作。
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".
(前提是您知道它适合 32 位整数)
(Provided you know it will fit into a 32bit integer)
只需将其投射为:
以及您的数据层:
Just cast this like:
And your data Layer: