您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關如何進行對Python操作方法的說明,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
Mysql是一個優秀的開源數據庫,它現在的應用非常的廣泛,因此很有必要簡單的介紹一下用python操作mysql數據庫的方法。Python操作數據庫需要安裝一個第三方的模塊。
由于Python的數據庫模塊有專門的數據庫模塊的規范,所以,其實不管使用哪種數據庫的方法都大同小異的,這里就給出一段示范的Python操作代碼:
#-*- encoding: gb2312 -*- import os, sys, string import MySQLdb # 連接數據庫 try: conn = MySQLdb.connect(host='localhost',user='root',passwd='xxxx',db='test1') except Exception, e: print e sys.exit() # 獲取cursor對象來進行操作 cursor = conn.cursor() # 創建表 sql = "create table if not exists test1(name varchar(128) primary key, age int(4))" cursor.execute(sql) # 插入數據 sql = "insert into test1(name, age) values ('%s', %d)" % ("zhaowei", 23) try: cursor.execute(sql) except Exception, e: print e sql = "insert into test1(name, age) values ('%s', %d)" % ("張三", 21) try: cursor.execute(sql) except Exception, e: print e # 插入多條 sql = "insert into test1(name, age) values (%s, %s)" val = (("李四", 24), ("王五", 25), ("洪六", 26)) try: cursor.executemany(sql, val) except Exception, e: print e #查詢出數據 sql = "select * from test1" cursor.execute(sql) alldata = cursor.fetchall() # 如果有數據返回,就循環輸出, alldata是有個二維的列表 if alldata: for rec in alldata: print rec[0], rec[1] cursor.close() conn.close()
看完上述內容,你們對如何進行對Python操作方法的說明有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。