python如何操作mysql
mysql 使用
啟動服務(wù)
sudo systemctl start mysqlpip3 install pymysql
python 操作數(shù)據(jù)庫:
定義類import pymysqlclass MyDb(): def __init__(self, host, user, passwd, db): self.__db = pymysql.connect(host, user, passwd, db) self.__cursor = self.__db.cursor() # 增刪改-數(shù)據(jù)庫 def set(self, sql): try: self.__cursor.execute(sql) self.__db.commit() except Exception as e: self.__db.rollback() print(’Execute Error: n {e}’) # 查-數(shù)據(jù)庫 def get(self, sql, fetchone=True): self.__cursor.execute(sql) try: if fetchone == True:data = self.__cursor.fetchone() else:data = self.__cursor.fetchall() except Exception as e: print(’Execute Error: n {e}’) data = None finally: return data # 關(guān)閉數(shù)據(jù)庫 def close(self): self.__db.close() 調(diào)用
def example(): ## 實(shí)例化數(shù)據(jù)庫 ### 類參數(shù):host、user、passwd、db db = MyDb(’localhost’, ’root’, ’zuoy123’, ’test’) ## 查看版本 get_version_sql = ’SELECT VERSION()’ version = db.get(get_version_sql) print(f’Database Version: {version}’) ## 刪除表 delete_table_sql = ’DROP TABLE IF EXISTS employee’ db.set(delete_table_sql) ## 新建表 new_table_sql = ’CREATE TABLE IF NOT EXISTS employee( id INT NOT NULL PRIMARY KEY, name CHAR(21) NOT NULL, age DOUBLE DEFAULT 18)’ db.set(new_table_sql) ## 查找表 get_table_sql = ’SHOW TABLES’ data = db.get(get_table_sql) if data: print(data) ## 關(guān)閉數(shù)據(jù)庫 db.close()if __name__ == ’__main__’: example()
常用sql
DROP TABLE IF EXISTS employee;CREATE TABLE IF NOT EXISTS employee(id INT);
以上就是python操作 mysql的步驟的詳細(xì)內(nèi)容,更多關(guān)于python操作 mysql的資料請關(guān)注好吧啦網(wǎng)其它相關(guān)文章!
相關(guān)文章:
1. docker compose idea CreateProcess error=2 系統(tǒng)找不到指定的文件的問題2. 一文秒懂idea的git插件跟翻譯插件3. 將properties文件的配置設(shè)置為整個(gè)Web應(yīng)用的全局變量實(shí)現(xiàn)方法4. XML解析錯(cuò)誤:未組織好 的解決辦法5. XML入門的常見問題(四)6. asp下利用xml打包網(wǎng)站文件7. jsp實(shí)現(xiàn)登錄驗(yàn)證的過濾器8. 爬取今日頭條Ajax請求9. JS中的常見數(shù)組遍歷案例詳解(forEach, map, filter, sort, reduce, every)10. XML入門的常見問題(一)
