Python读取Mysql数据库内容

利用类库MySQLdb
实例代码如下:

import  MySQLdb
conn 
=  MySQLdb.connect( " localhost " , " root " , " 111 " , " test " )
c
= conn.cursor()
c.execute(
""" select * from name """ )
out 
=  c.fetchall();
print  out

你可能感兴趣的:(Python读取Mysql数据库内容)