Using pyodbc cause error: Data source name not found and no default driver specified(使用 pyodbc 导致错误:未找到数据源名称且未指定默认驱动程序)
问题描述
我正在使用 pyodbc 连接 SQL Server.我创建了这样的连接字符串:
from sqlalchemy import Table, Column, databases, Integer, String, ForeignKey, create_engine从 sqlalchemy.ext.declarative 导入 declarative_base从 sqlalchemy.orm 导入会话engine = create_engine('mssql+pyodbc://sa:123@localhost/TrainQuizDB')引擎连接()
TrainQuizDB 是我在 Sql Server 中创建的数据库名称.
有关更多信息,我有 Windows 8.1 64 位,我安装了 Python 3.5.1 32 位版本,我从
如 SQLAlchemy 文档的相关部分:
<块引用>基于主机名的连接不是首选,但支持.必须明确指定 ODBC 驱动程序名称
因此,您需要将驱动程序名称添加到您的连接字符串中:
engine = create_engine('mssql+pyodbc://sa:123@localhost/TrainQuizDB?driver=ODBC+Driver+17+for+SQL+Server')
I'm using pyodbc to connect SQL Server. I had created connection string like this:
from sqlalchemy import Table, Column, databases, Integer, String, ForeignKey, create_engine
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import session
engine = create_engine('mssql+pyodbc://sa:123@localhost/TrainQuizDB')
engine.connect()
TrainQuizDB is database name that I created in Sql Server.
For more information I have windows 8.1 64bit and I installed python version 3.5.1 32bit and I downloaded pyodbc from http://www.lfd.uci.edu/~gohlke/pythonlibs/#pyodbc (pyodbc-3.0.10-cp35-none-win32.whl). But when I try to connect it cause this error:
sqlalchemy.exc.DBAPIError: (pyodbc.Error) ('IM002', '[IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified (0) (SQLDriverConnect)')
Also I have tested the connection In ODBC Data sources and it was successful.
As noted in the relevant section of the SQLAlchemy documentation:
Hostname-based connections are not preferred, however are supported. The ODBC driver name must be explicitly specified
So, you need to add the driver name to your connection string:
engine = create_engine('mssql+pyodbc://sa:123@localhost/TrainQuizDB?driver=ODBC+Driver+17+for+SQL+Server')
这篇关于使用 pyodbc 导致错误:未找到数据源名称且未指定默认驱动程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 pyodbc 导致错误:未找到数据源名称且未指定默认驱动程序
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- SQL 临时表问题 2022-01-01