摘要:
MySQLdb安装失败了,直接使用pymysql,安装了pymysql。 并学习了使用使用pymysql创建数据库和表,并插入数据。 __author__ = 'Administrator' import pymysql try: conn= pymysql.connect(host='localhost', port=3306, user='root', passwd='',cha... 阅读全文
摘要:
MySQLdb安装失败了,直接使用pymysql,安装了pymysql。 并学习了使用使用pymysql创建数据库和表,并插入数据。 __author__ = 'Administrator' import pymysql try: conn= pymysql.connect(host='localhost', port=3306, user='root', passwd='',cha... 阅读全文
摘要:
__author__ = 'Administrator' from tkinter import * import tkinter.messagebox class MainWindow: def buttonListener1(self,event): tkinter.messagebox.showinfo("messagebox","this is button... 阅读全文
|