使用 PYODBC 访问 SQL Server 2005
我构建了一个应用程序来使用 wxpython 进行一些数字运算。为了实现我的目的,我必须访问 SQL Server 2005 中的数据。我正在使用 PYODBC,当我询问服务器管理员时,他为我提供了服务器名称和数据库的唯一数据 ID。
我没有看到在 PYODBC 中使用唯一数据 ID 访问数据库的语法如下:
Conn=pyodbc.connect('DRIVER={SQL Server};SERVER=USMDUBEDAS215;DATABASE=spam;UID=usr,PWD=pwd')
当您有数据库和表名时。如何使用服务器名称和 Data_ID 访问数据库?
我不知道从哪里开始。
I build an application to do some number crunching with wxpython. I have to access the data from SQL Server 2005 for my purpose. I am using PYODBC and when I asked my server adminstrator, he provided me the server name and unique data ID for the database.
I don't see the syntax to access database with unique data ID in PYODBC as something like:
Conn=pyodbc.connect('DRIVER={SQL Server};SERVER=USMDUBEDAS215;DATABASE=spam;UID=usr,PWD=pwd')
when you have a database and table name. How can you access the database with server-name and Data_ID?
I don't know from where to start.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试查看以下链接:http://code.google.com/p/pyodbc /wiki/GettingStarted
连接方法链接:http://code.google.com/p/pyodbc/wiki/Module#connect
使用上面的链接,您可以找到以下示例代码:
我已在我们的环境中尝试过,并且所有按预期工作
Try to look at the following link: http://code.google.com/p/pyodbc/wiki/GettingStarted
Link to connect method: http://code.google.com/p/pyodbc/wiki/Module#connect
Using the link above you can find the following sample code:
I have tried it in our env and all works as expected