Conversion of INTEGER to DATETIME differs to VB6(INTEGER 到 DATETIME 的转换与 VB6 不同)
问题描述
我正在查看一些对 SQL 2005 db 运行查询的旧版 VB6 代码(在我的时代之前).它在 WHERE
子句中提供了日期限制 - 其中日期作为整数值给出,作为 VB6 中日期上的 CLng()
的结果.
I'm looking at some legacy VB6 code (years+years old, before my time) which runs a query against an SQL 2005 db. It supplies a date restriction in the WHERE
clause - where the date is given as an integer value as a result of a CLng()
on the Date in VB6.
例如
...
WHERE SomeDateField >= 40064
40064 是 VB6 通过对其执行 CLng()
将今天的日期转换为(9 月 8 日)的内容.然而,在 T-SQL 这个整数实际上转换为 10th Sep:
40064 is what VB6 converts today's date to (8th Sep) by doing a CLng()
on it.
However, in T-SQL this integer actually converts to 10th Sep:
SELECT CAST(40064 AS DATETIME)
所以结果并不如预期.
有谁知道是什么导致了 VB 和 T-SQL 之间的这种转换差异?
Anyone know what may cause this difference in conversion between VB and T-SQL?
我确信这总是没有问题,显然我的建议是以标准 ISO 格式将日期作为日期传递.但是,需要尝试找出这种差异开始出现的原因.
I'm assured this always worked without problem, and obviously my suggestion is to pass dates in as dates in standard ISO format. But, need to try to find the reason behind this discrepancy starting to occur.
推荐答案
似乎 VB 日期时间从 1899 年 12 月 30 日开始:
Seems that VB datetime starts on 30th Dec 1899:
?CDbl(#30/12/1899 03:00:01#)
0.125011574074074
而 SQL 日期时间从 1900 年 6 月 1 日开始:
whereas SQL datetime starts on 1st Jun 1900:
SELECT CAST(0 AS DATETIME)
1900-01-01 00:00:00.000
这给出了两天的差异,适合您的结果:)
This gives two days difference which fits your results :).
'VB6
CDbl(#2009-09-08#)
40064
-- SQL:
SELECT CAST(40064 AS DATETIME)
2009-09-10 00:00:00.000
这篇关于INTEGER 到 DATETIME 的转换与 VB6 不同的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:INTEGER 到 DATETIME 的转换与 VB6 不同


- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- SQL 临时表问题 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01