欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

关于mysqldb 的使用

程序员文章站 2024-02-10 13:04:10
...

1.连接

conn = MySQLdb.connect(host,port,user,passwd); //根据所要连接的数据库进行设置

2.切换数据库

conn.select_db(db_name)

3.关闭数据库

conn.close()

4.关于fetch的结果处理

fetch 得到的结果是tuple形式,可转换为较好处理的list或dict形式

import MySQLdb.cursors as cursors
conn = MySQLdb.connect(host,port,user,passwd,
cursorclass=cursors.SSCursor
);         
for row in cur:
    print list(row)




相关标签: mysqldb