- 博客(3)
- 资源 (4)
- 收藏
- 关注
原创 python DB操作
#!/usr/bin/python#coding=utf-8import MySQLdbclass MySQL(): def __init__(self,host,user,passwd,db,port=3306): try: self.conn=MySQLdb.connect(host,user,passwd,db,port,charset='utf8') self.c
2015-12-08 10:12:14
348
原创 python数据库操作
#!/usr/bin/python#coding=utf-8import MySQLdbclass MySQL(): def __init__(self,host,user,passwd,db,port=3306): try: self.conn=MySQLdb.connect(host,user,passwd,db,port,charset='utf8') self.c
2015-12-08 10:08:40
289
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人