PYTHON操作MYSQLDB

來源:互聯網
上載者:User

標籤:

每天學習一點點,C#寫膩了,最近在寫NODE,PYTHON,SWIFT,豐富自己的開發世界;

python更多的是作為膠水語言,做一些自動化的指令碼,網路任務,資料庫任務,定時任務;

安裝MysqlDB

要想使python可以操作mysql 就需要MySQL-python驅動,它是python 操作mysql必不可少的模組。

:https://pypi.python.org/pypi/MySQL-python/

>>python setup.py install

之後就可以操作資料庫了;

查詢

查:fetchone,fetchmany,fetchall

同時使Charset和資料庫編碼格式一致:

conn = MySQLdb.Connect(host=‘localhost‘, user=‘root‘, passwd=‘root‘, db=‘python‘,charset=‘utf8‘) 

 

插入:

#插入一條資料sqli="insert into student values(%s,%s,%s,%s)"cur.execute(sqli,(‘3‘,‘Huhu‘,‘2 year 1 class‘,‘7‘))

批量插入:

#一次插入多條記錄sqli="insert into student values(%s,%s,%s,%s)"cur.executemany(sqli,[    (‘3‘,‘Tom‘,‘1 year 1 class‘,‘6‘),    (‘3‘,‘Jack‘,‘2 year 1 class‘,‘7‘),    (‘3‘,‘Yaheng‘,‘2 year 2 class‘,‘7‘),    ])
    value=[1,‘hi rollen‘]    cur.execute(‘insert into test values(%s,%s)‘,value)         values=[]    for i in range(20):        values.append((i,‘hi rollen‘+str(i)))             cur.executemany(‘insert into test values(%s,%s)‘,values)     cur.execute(‘update test set info="I am rollen" where id=3‘)

  

 

PYTHON操作MYSQLDB

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.