gpt4 book ai didi

python - 如何使用连接字符串从python连接到mysql数据库

转载 作者:可可西里 更新时间:2023-11-01 06:48:03 25 4
gpt4 key购买 nike

您好,我正在使用 python 和数据库作为 Mysql,现在我想从 python 连接到 Mysql 数据库,我写了下面的代码

方法_1

import MySQLdb as mdb


conn = mdb.connect('ip_address', 'user_name', 'pass_word', 'database_name')

通过使用上面的方法,我可以成功连接到 Mysql,但是我想知道我们是否可以通过使用连接字符串并像我下面提到的那样访问来做同样的事情

方法_2

connectString=Server=ip_address;Database=database_name;UID=user_name;PWD=pass_word
conn = mdb.connect(connectString)

但我在使用上面时遇到错误,所以任何人都可以让我知道我们是否只能通过method_1 访问 Mysql 数据库,或者是否有任何方法可以声明对某些变量的访问凭据并使用正如我在 method_2

中提到的那样连接的变量

编辑代码:

实际上我正在尝试的是下面给出的

example_file.ini

[for_primary]

connectString=host="192.168.xx.xxx",user="username_1",passwd="password_1",db="database_1"

[for_secondary]

connectString=host="192.168.xx.xxx",user="username_2",passwd="password_2",db="database_2"

文件.py:

import ConfigParser
import MySQLdb as mdb

configFeed = ConfigParser.ConfigParser()
configFeed.read('path to file/example_file.ini')
connectString = configFeed.get('for_primary', 'connectString')
conn = mdb.connect(connectString)
print conn

结果:

 File "/usr/lib64/python2.7/site-packages/MySQLdb/__init__.py", line 81, in Connect
return Connection(*args, **kwargs)
File "/usr/lib64/python2.7/site-packages/MySQLdb/connections.py", line 187, in __init__
super(Connection, self).__init__(*args, **kwargs2)
_mysql_exceptions.OperationalError: (2005, 'Unknown MySQL server host \'host="192.168.xx.xxx",user="username_1", passwd="password_1",db="database_1"\' (0)')

所以我正在尝试这种方式,因为我需要根据 example_file.ini 文件中的选择连接到两个数据库。有没有办法像 abobe 一样通过声明访问 .ini 文件中的另一个变量的凭据。如果我从 .ini 文件中获取连接字符串,我期待它会把它们作为 string

最佳答案

你不能,MySQLdb.connect 只支持前一个选项。

当然,您可以将连接字符串解析为其组成部分,并将其用作 .connect() 函数的一组关键字参数:

connectParams = dict(entry.split('=') for entry in connectString.split(';'))
mdb.connect(**connectParams)

然而,上述拆分方法相当幼稚;您可能需要一种更复杂的方法来删除不受支持的选项,转换某些参数值(想想 use_unicodeTrueFalse)并允许转义 ;= 字符,它们是参数值的一部分。引用.connect() documentation用于支持的关键字参数。

关于python - 如何使用连接字符串从python连接到mysql数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12072961/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com