gpt4 book ai didi

Python MySQLdb 获取连接详细信息

转载 作者:行者123 更新时间:2023-11-30 01:09:48 25 4
gpt4 key购买 nike

在调用 MySQLdb.connect() 后,有没有办法从 MySQLdb 连接对象访问主机、用户名和密码等信息?

最佳答案

这似乎不是检索连接参数的方法。或者至少有一个可以推荐的。

我一直在查看该对象的所有变量和方法(在 ipython 中,您可以在具有连接的对象上调用 dict ,例如 conn.dict ),给出的列表类似于:

{'_server_version': (5, 6),
'_transactional': 8192L,
'cursorclass': MySQLdb.cursors.Cursor,
'encoders': {bool: <function MySQLdb.converters.Bool2Str>,
instance: <function MySQLdb.converters.Instance2Str>,
float: <function MySQLdb.converters.Float2Str>,
int: <function MySQLdb.converters.Thing2Str>,
list: <function MySQLdb.converters.quote_tuple>,
long: <function MySQLdb.converters.Thing2Str>,
dict: <function _mysql.escape_dict>,
NoneType: <function MySQLdb.converters.None2NULL>,
set: <function MySQLdb.converters.Set2Str>,
str: <function MySQLdb.connections.string_literal>,
tuple: <function MySQLdb.converters.quote_tuple>,
object: <function MySQLdb.converters.Instance2Str>,
unicode: <function MySQLdb.connections.unicode_literal>,
datetime.timedelta: <function MySQLdb.times.DateTimeDelta2literal>,
datetime.datetime: <function MySQLdb.times.DateTime2literal>,
array.array: <function MySQLdb.converters.array2Str>},
'messages': [],
'string_decoder': <function MySQLdb.connections.string_decoder>,
'unicode_literal': <function MySQLdb.connections.unicode_literal>}

通过浏览代码“connect”,返回扩展现有 _mysql.connection 类的 Connection 类的实例。在这里您可以找到诸如“get_host_info”之类的函数,您可以直接在连接对象上调用这些函数,但似乎没有提供我认为您正在寻找的功能。

检索数据的一种方法是创建一个新类,其中包含连接和为其提供的参数。

希望有帮助,杰玛

关于Python MySQLdb 获取连接详细信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19530375/

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