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