Python MySQLdb获取连接细节

时间:2013-10-22 23:55:33

标签: python mysql mysql-python

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

1 个答案:

答案 0 :(得分: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>}

通过导航代码&#34; connect&#34;返回扩展现有_mysql.connection类的Connection类的实例。在这里你可以找到&#34; get_host_info&#34;等功能。您可以直接在连接obj上调用,但似乎没有提供我认为您正在寻找的内容。

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

希望有所帮助, 杰玛