主頁 > 知識庫 > 淺析python連接數(shù)據(jù)庫的重要事項

淺析python連接數(shù)據(jù)庫的重要事項

熱門標(biāo)簽:400電話申請資格 遼寧智能外呼系統(tǒng)需要多少錢 qt百度地圖標(biāo)注 舉辦過冬奧會的城市地圖標(biāo)注 電銷機(jī)器人系統(tǒng)廠家鄭州 螳螂科技外呼系統(tǒng)怎么用 正安縣地圖標(biāo)注app 阿里電話機(jī)器人對話 地圖地圖標(biāo)注有嘆號

1、update delete insert 這種語句都需要commit或者直接在連接數(shù)據(jù)庫的時候加上autocommit=True

import pymysql

conn = pymysql.connect(
  host="",
  user="jxz",
  password="",
  db="jxz",
  port=3306,
  charset="utf8",
  autocommit=True

)#連接數(shù)據(jù)庫
2、數(shù)據(jù)庫內(nèi)容比較多的時候

for line in cursor:#表數(shù)據(jù)比較多的時候就用它
  print(line)
#還有其他的間接的方式
# result = cursor.fetchmany(5) #獲取n條
#cursor.execute("select * from students limit 5;")

3、想要獲取到字典型的數(shù)據(jù),在寫游標(biāo)的時候加上:cursor = conn.cursor(pymysql.cursors.DictCursor) #建立游標(biāo)

cursor = conn.cursor(pymysql.cursors.DictCursor) #建立游標(biāo)

4、整體的代碼:

import pymysql
conn=pymysql.connect(host='',
        user='jxz',
        password='',
        db='jxz',
        port=3306,
        autocommit=True,
        charset='utf8')#鏈接數(shù)據(jù)庫
cursor=conn.cursor()#游標(biāo)
#查看當(dāng)前所有的表
#cursor.execute('create table lmmlmm(num int,str varchar (20));')
cursor.execute('insert into lmmlmm (num,str)values("1","limiaomiao");')
conn.commit()
result=cursor.fetchall()
cursor.close()
conn.close()
print(result)

5、可以將連接數(shù)據(jù)庫的參數(shù)寫成集合的形式,并且用**轉(zhuǎn)換成key,value的格式,方便調(diào)用

import pymysql

mysql_info = pymysql.connect(
  host="",
  user="jxz",
  password="",
  db="jxz",
  port=3306,
  charset="utf8",
  autocommit=True
)#連接數(shù)據(jù)庫
##**后面只能是字典,且能夠轉(zhuǎn)換成key,value
def execute_sql(sql,more=False,db_info=None):
 # select *from user where id=1;
  if db_info:
    conn=pymysql.connect(**db_info)
  else:
    conn=pymysql.connect(**mysql_info)

到此這篇關(guān)于python連接數(shù)據(jù)庫的重要事項的文章就介紹到這了,更多相關(guān)python連接數(shù)據(jù)庫內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • python3 實現(xiàn)mysql數(shù)據(jù)庫連接池的示例代碼
  • 配置python連接oracle讀取excel數(shù)據(jù)寫入數(shù)據(jù)庫的操作流程
  • python連接mongodb數(shù)據(jù)庫操作數(shù)據(jù)示例
  • python連接mysql數(shù)據(jù)庫并讀取數(shù)據(jù)的實現(xiàn)
  • Python連接mysql數(shù)據(jù)庫及簡單增刪改查操作示例代碼
  • Python 操作 PostgreSQL 數(shù)據(jù)庫示例【連接、增刪改查等】
  • Python連接SQLite數(shù)據(jù)庫并進(jìn)行增冊改查操作方法詳解
  • python連接PostgreSQL數(shù)據(jù)庫的過程詳解
  • python針對mysql數(shù)據(jù)庫的連接、查詢、更新、刪除操作示例
  • 使用python連接mysql數(shù)據(jù)庫之pymysql模塊的使用
  • python 連接數(shù)據(jù)庫mysql解壓版安裝配置及遇到問題
  • python遠(yuǎn)程連接MySQL數(shù)據(jù)庫
  • 詳解Python連接MySQL數(shù)據(jù)庫的多種方式
  • 教你怎么用python連接sql server

標(biāo)簽:昭通 淘寶好評回訪 合肥 隨州 興安盟 濟(jì)源 阜新 信陽

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《淺析python連接數(shù)據(jù)庫的重要事項》,本文關(guān)鍵詞  淺析,python,連接,數(shù)據(jù)庫,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《淺析python連接數(shù)據(jù)庫的重要事項》相關(guān)的同類信息!
  • 本頁收集關(guān)于淺析python連接數(shù)據(jù)庫的重要事項的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章