0

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

4

1 回答 1

0

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

我一直在查看对象的所有变量和方法(在 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”这样的函数,您可以直接在连接 obj 上调用这些函数,但似乎没有提供我认为您正在寻找的功能。

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

希望有帮助,杰玛

于 2014-10-24T14:43:10.730 回答