這篇文章主要介紹了python中操作mysql的方法,具有一定借鑒價(jià)值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
為尼瀘西等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計(jì)制作服務(wù),及尼瀘西網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為網(wǎng)站制作、成都網(wǎng)站制作、尼瀘西網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!mysql 使用
啟動(dòng)服務(wù)
sudo systemctl start mysql
pip3 install pymysql
python 操作數(shù)據(jù)庫:
import pymysql class 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()