摘要: class MySqlOdbc: def __init__(self): self.sqlhead = None # 当前数据链接句柄 self.mycursor = None # 当前游标 """ 关闭数据库 """ def close(self): if self.mycursor: self. 阅读全文
posted @ 2022-01-19 17:26 默*为 阅读(183) 评论(0) 推荐(0) 编辑