pyodbc 将 SQL Server DATE 字段作为字符串返回
我正在使用 pyodbc 查询包含 DATE 类型列的 SQL Server 2008 数据库表。
生成的数据行包含日期字符串,而不是 python datetime.date 或 datetime.datetime 实例。
这似乎只是 DATE 类型的列的问题; DATETIME 类型的列已正确处理并返回 datetime.datetime 实例。
示例
import pyodbc
from pprint import pformat
db = pyodbc.connect("DRIVER={SQL Server};SERVER=.\\SQLEXPRESS;DATABASE=scratch;Trusted_Connection=yes")
print pformat(db.cursor().execute("select * from Contract").description)
结果:
(('id', <type 'int'>, None, 10, 10, 0, False),
('name', <type 'str'>, None, 23, 23, 0, False),
('some_date', <type 'unicode'>, None, 10, 10, 0, True),
('write_time', <type 'datetime.datetime'>, None, 23, 23, 3, False))
请注意,some_date 列指示为 unicode 字符串类型,但是,在数据库中定义了此列作为日期:
CREATE TABLE dbo.Contract(
id INT NOT NULL,
name VARCHAR(23) NOT NULL,
some_date DATE NULL,
write_time DATETIME NOT NULL)
这是正常的吗?我怎样才能最好地纠正它?
I'm using pyodbc to query a SQL Server 2008 database table with columns of DATE type.
The resulting rows of data contain date strings rather than python datetime.date or datetime.datetime instances.
This only appears to be an issue for columns of type DATE; columns of type DATETIME are handled correctly and return a datetime.datetime instance.
Example
import pyodbc
from pprint import pformat
db = pyodbc.connect("DRIVER={SQL Server};SERVER=.\\SQLEXPRESS;DATABASE=scratch;Trusted_Connection=yes")
print pformat(db.cursor().execute("select * from Contract").description)
Results:
(('id', <type 'int'>, None, 10, 10, 0, False),
('name', <type 'str'>, None, 23, 23, 0, False),
('some_date', <type 'unicode'>, None, 10, 10, 0, True),
('write_time', <type 'datetime.datetime'>, None, 23, 23, 3, False))
Note that the some_date column is indicated as type unicode string, however, in the database this column is defined as DATE:
CREATE TABLE dbo.Contract(
id INT NOT NULL,
name VARCHAR(23) NOT NULL,
some_date DATE NULL,
write_time DATETIME NOT NULL)
Is this normal, and how can I best correct it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 SQL Server 本机客户端。例如,将 Driver={SQL Server Native Client 10.0} 放入连接字符串中,而不是
DRIVER={SQL Server}。
重现您的场景,使用 SQL Server ODBC 驱动程序将日期作为字符串返回。当使用 SQL Server 本机客户端的 2008+ 兼容版本时,日期类型按预期返回,但看起来 datetime2 作为字符串返回(在我有限的测试中)。
表定义:
示例:
结果:
Use the SQL Server native client. e.g. Put Driver={SQL Server Native Client 10.0} in your connection string,instead of
DRIVER={SQL Server}.
Reproduced your scenario with date being returned as string using SQL Server ODBC driver. When using a 2008+ compatible version of the SQL Server native client, the date type is returned as expected, but it looks like datetime2 gets returned as string (in my limited testing).
Table definition:
Example:
Results: