时间:2021-07-01 10:21:17 帮助过:27人阅读
python为数据库访问开发了统一的API(Application Programming Interface,应用程序编程接口):DB-API.
MySQL的实现叫做MySQLdb,Oracle实现为Oracledb。
每个模块都包含一个connect()方法,它返回一个DB-API连接对象。
连接对象的API: 下面例子使用用户名/口令连接本地主机(localhost)上的MySQL数据库test.
>>> import MySQLdb
>>> conn = MySQLdb.connect(host=‘localhost‘, user=‘root‘,passwd=‘123456‘, db=‘test‘);
完成相应的操作后关闭连接:
>>> conn.close();
python DB-API
标签:ati rac nec 例子 关闭 passwd 本地 use cat