上传者: 38745648
|
上传时间: 2022-07-01 14:54:24
|
文件大小: 55KB
|
文件类型: PDF
这次要为我的python程序加上数据库,主要是实现从mysql中查询出数据并在页面上显示出来。
首先是mysql的配置文件config.py
host=127.0.0.1
user=root
password=
charset=utf8
database=service
port=3306
然后是从数据库中读取数据的aService.py
import MySQLdb
import sys
import config
class AService(object):
def getA(self,id):
conn = MySQLdb.connect(