在 Delphi 5 中从 SQL Server 表检索 longint 字段的正确方法
我在 SQL Server 2005 中有一个值为 -7590730850027557904 的字段,我正在 Delphi 5 中通过 ADO 检索它,但我检索到的是 7590730850027557904 - 省略了负号。将 longint 值从 SQL Server 检索到 Delphi 5 的正确方法是什么?
这是我的代码
with DataSet do
begin
Connection := Conn;
CommandText := 'SELECT * FROM CUSTOMERSLIST';
Open;
end;
ShowMessage(DataSet.FieldByName('SID').AsString);
I have a field with value -7590730850027557904 in SQL Server 2005 and I am retrieving it through ADO in Delphi 5 but what I retrieved was 7590730850027557904 - the negative sign was omitted. What is the correct way of retrieving longint values from SQL Server to Delphi 5?
Here is my code
with DataSet do
begin
Connection := Conn;
CommandText := 'SELECT * FROM CUSTOMERSLIST';
Open;
end;
ShowMessage(DataSet.FieldByName('SID').AsString);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SQL Server 具有 bigint 类型。
它从 -2^63 (-9,223,372,036,854,775,808) 到 2^63-1 (9,223,372,036,854,775,807)。
相当于 Delphi 中的 Int64
SQL Server has bigint type.
It's from -2^63 (-9,223,372,036,854,775,808) through 2^63-1 (9,223,372,036,854,775,807).
Equivalent Int64 in Delphi
感谢我的同事。解决方案是在从数据库查询时将 bigint 转换为字符串。
Thanks to my colleague. The solution is to covert bigint to string as you query from the database.