真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Python中數(shù)據(jù)庫操作的示例分析-創(chuàng)新互聯(lián)

這篇文章給大家分享的是有關(guān)Python中數(shù)據(jù)庫操作的示例分析的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:申請域名、虛擬空間、營銷軟件、網(wǎng)站建設(shè)、來鳳網(wǎng)站維護、網(wǎng)站推廣。

使用原生SQL語句進(jìn)行對數(shù)據(jù)庫操作,可完成數(shù)據(jù)庫表的建立和刪除,及數(shù)據(jù)表內(nèi)容的增刪改查操作等。其可操作性很強,如可以直接使用“show databases”、“show tables”等語句進(jìn)行表格之外的部分操作。

Centos7遠(yuǎn)程操作數(shù)據(jù)庫時需要關(guān)閉防火墻,否則會連接不上

安裝:

pip3 install pymysql

數(shù)據(jù)查詢:

 import pymysql 
 #建立數(shù)據(jù)庫連接
 conn=pymysql.connect(host="192.168.1.175",port=3306,user="root2",passwd="proot2",db="dongdb") 
 #得到數(shù)據(jù)庫操作游標(biāo)
 cur=conn.cursor()
 #查詢數(shù)據(jù)
 resdata=cur.execute("select * from tb_dong")
 print("總條數(shù)為:",resdata)
 #一行一行輸出數(shù)據(jù),以元組形式
 print("取出第一條數(shù)據(jù):",cur.fetchone())
 print("取出第二條數(shù)據(jù):",cur.fetchone()[3])
 #輸出剩下的所有數(shù)據(jù),以元組嵌套形式
 print("取出剩下的數(shù)據(jù):",cur.fetchall())
 print("------ 完成操作  -------")
 #關(guān)閉連接
 conn.close()

數(shù)據(jù)插入:

也可以使用 execute() 進(jìn)行操作

 import pymysql 
 #建立數(shù)據(jù)庫連接
 conn=pymysql.connect(host="192.168.1.175",port=3306,user="root2",passwd="proot2",db="dongdb") 
 #得到數(shù)據(jù)庫操作游標(biāo)
 cur=conn.cursor() 
 #插入數(shù)據(jù)
 datax=[
   ("DXD1","M","東小東1"),
   ("DXD2","F","東小東2")
 ]
 #返回影響行數(shù)
 rescoun=cur.executemany("insert into tb_dong(namex,sex,otherxxx) values(%s,%s,%s)",datax)
 print(rescoun)
 #進(jìn)行數(shù)據(jù)修改,必須提交事物
 conn.commit()
 print("------ 完成操作  -------")
 #關(guān)閉數(shù)據(jù)庫連接
 conn.close()

數(shù)據(jù)修改:

#返回影響行數(shù),如果值未進(jìn)行任何修改則返回0
rescoun=cur.execute("update tb_dong set namex='%s',sex='%s' where id>%d"%("dongdong","F",16))
print(rescoun)
#進(jìn)行數(shù)據(jù)修改,必須提交事物
conn.commit()

數(shù)據(jù)刪除:

#返回影響行數(shù)
rescoun=cur.execute("delete from tb_dong where id>%d"%(16))
conn.commit() #提交事物

部分封裝:

 import pymysql 
 #建立數(shù)據(jù)庫連接
 conn=pymysql.connect(host="192.168.1.175",port=3306,user="root2",passwd="proot2",db="dongdb")
 #得到數(shù)據(jù)庫操作游標(biāo)
 cur=conn.cursor() 
 #刪除
 def dongdel(tablex,idx):
  try:
   rescoun = cur.execute("delete from %s where id=%d" % (tablex,idx))
   conn.commit() #提交事物
   return rescoun
  except Exception as e:
   print("刪除出現(xiàn)錯誤", e)
   return e
 #插入
 def donginsert(tablex,listx):
 try:
   rescoun = cur.executemany("insert into "+tablex+"(namex,sex,otherxxx) values(%s,%s,%s)",listx)
   conn.commit()
   return rescoun
 except Exception as e:
    print("插入出現(xiàn)錯誤",e)
    return e
 #查詢,參數(shù)為表名和id值
 def dongselect(tablex,idx=0):
  try:
   if idx==0:
     resdata = cur.execute("select * from %s"%tablex)
   else:
     resdata = cur.execute("select * from %s where id=%d" %(tablex,idx))
   return resdata
  except Exception as e:
    print("查詢出現(xiàn)錯誤",e)
    return e
 #修改
 def dongupdate(tablex,idx,namex):
  try:
   rescoun = cur.execute("update %s set namex='%s' where id=%d" % (tablex,namex,idx))
   conn.commit()
   return rescoun
  except Exception as e:
    print("更新出現(xiàn)錯誤", e)
    return e
 #刪除數(shù)據(jù)
 resdel=dongdel("tb_dong",6)
 print("刪除的條數(shù)為:",resdel)
 #插入數(shù)據(jù)
 datax=[
   ("dongxiaodong","M","東小東1")
 ]
 resinsert=donginsert("tb_dong",datax)
 print("插入的條數(shù)為:",resinsert)
 #修改數(shù)據(jù)
 resupdate=dongupdate("tb_dong",7,"dongxiaodong7")
 print("修改的條數(shù)為:",resupdate)
 #查詢數(shù)據(jù)
 resselect=dongselect("tb_dong",0)
 print("查詢的總條數(shù)為:",resselect)
 print("全部數(shù)據(jù)為:",cur.fetchall())
 #關(guān)閉數(shù)據(jù)庫連接
 conn.close()

感謝各位的閱讀!關(guān)于“Python中數(shù)據(jù)庫操作的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!


文章題目:Python中數(shù)據(jù)庫操作的示例分析-創(chuàng)新互聯(lián)
文章源于:http://weahome.cn/article/ddejig.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部