在 mac os 上通过 pyodbc 从 sqlalchemy 连接到 mssql

发布于 2024-10-11 17:10:33 字数 287 浏览 4 评论 0原文

有人在 sqlalchemy 中通过 pyodbc 成功连接到 mssql 吗?我现在正在使用turbogears2,并尝试连接到mssql,在mac os平台上工作。

出现以下错误:

sqlalchemy.exc.DBAPIError: (Error) ('00000', '[00000] [iODBC][Driver Manager]dlopen({SQL Server}, 6): image not found (0) (SQLDriverConnectW)') None None

Anyone has successfully connect to mssql thru pyodbc within sqlalchemy? I am using turbogears2 right now, and try to connect to mssql, working on a mac os platform.

Getting following error:

sqlalchemy.exc.DBAPIError: (Error) ('00000', '[00000] [iODBC][Driver Manager]dlopen({SQL Server}, 6): image not found (0) (SQLDriverConnectW)') None None

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

囍笑 2024-10-18 17:10:33

有一种比旧的 macports 或 fink 更好的方法,brew

brew install freetds unixodbc

而且它甚至不需要 root安装它。

There is a better approach than the old macports or fink, brew:

brew install freetds unixodbc

And it doesn't even need root to install it.

难如初 2024-10-18 17:10:33

MacPort 的简单方法

只需通过以下方式进行安装:

    sudo port install freetds +mssql +odbc +universal

这将同时安装 freetds 和 unixODBC,我们可以使用 unixODBC 进行 ODBC 管理,也可以使用 Mac OS 附带的 iODBC。

编译和安装

    ./configure --prefix=/usr/local/lib/freetds --with-tdsver=8.0 --enable-msdblib --enable-dbmfix --with-gnu-ld --enable-shared --enable-static
    make
    make install

TDSVER 设置

要连接到 SQL Server 2005/8,请确保将 tds 版本设置为 8.0,使用以下终端命令:

    export TDSVER = 8.0

Lauguange 设置

确保已设置正确的语言:

    export LC_ALL=en_US.UTF-8

Easy way by MacPort

Simply do the installation by:

    sudo port install freetds +mssql +odbc +universal

This will install both freetds and unixODBC, we can either using unixODBC for ODBC management, or using iODBC shipped with Mac OS.

Compile and installation

    ./configure --prefix=/usr/local/lib/freetds --with-tdsver=8.0 --enable-msdblib --enable-dbmfix --with-gnu-ld --enable-shared --enable-static
    make
    make install

TDSVER setting

For connecting to SQL Server 2005/8, make sure setting the tds version to 8.0, use following terminal command:

    export TDSVER = 8.0

Lauguange setting

Make sure right language has been setted:

    export LC_ALL=en_US.UTF-8
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文