从python中的dbapi查找数据库类型(SQlite、Mysql、PostgreSQL)
我需要根据 dbapi 游标实例中的数据找出我正在使用的数据库类型。尚未在 dbapi 文档中找到有关如何执行此操作的任何线索。能做到吗?
I need to find out what kind of database I am working against based on data from an dbapi cursor instance. Have not found any clues on how to do this in the dbapi docs. Can it be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
至少据我所知,它不是 dbapi 2.0 的一部分。但是,您可以实现一个函数来从给定的数据库对象(游标、连接)获取模块名称,并将其映射到一个众所周知的字符串以供您的应用程序使用:
示例:
It isn't part of the dbapi 2.0, at least to my knowledge. However, you can implement a function to obtain the module name from a given database object (cursor, connection) and map that to a well-known string for your application to use:
Examples: