12、Python高級功能之Mysql數據庫模塊

Python高級功能之Mysql數據庫模塊python


安裝python mysql組件mysql

# yum -y install MySQL-python.x86_64sql



如下根據實例來講明:數據庫

>>> import MySQLdb服務器

>>> conn = MySQLdb.connect(user='root',passwd='2wdc%RDX',host='localhost')  #鏈接數據庫(到服務器的鏈接)ide

>>> cur = conn.cursor()  # 建立遊標(經過對象(cur)保存下來fetch

>>> conn.select_db('redmine')    #選擇要增刪改的數據庫spa

>>> cur.execute("insert into userinfo(name,age,gender) value('loyu',20,'m')") # execute(sql語句)發送sql語句指針

>>> sqli = "insert insto userinfo(name,age,gender) value(%s,%s,%s)"  #經過用對象的方法留待之後傳值對象

>>> cur.execute(sqli,('a',5,'s'))

>>> sqlim = "insert insto userinfo(name,age,gender) values(%s,%s,%s)"  # 建立多個

>>> cur.executemany(sqlim,[('a',5,'s'),('b',3,'df'),('c',3,'c')]) # executemany 經過用列表傳多個值


>>> cur.execute("select * from users")

4L

>>> cur.fetchone()  #每執行一次查詢打印出一條數據(有指針)

>>> cur.fetchone()

>>> cur.scroll(0,'absolute')   # 指針回滾到開頭,從頭查詢

>>> cur.fetchmany(4)  # fetchmany經過列表的方式打印表中4條表數據

>>> cur.fetchmany(cur.execute("select * from users"))  #fetchmany經過列表的方式打印表中全部數據

>>> cur.close()      #關閉遊標

>>> conn.close()   #關閉鏈接

相關文章
相關標籤/搜索