python|python msyql
【python|python msyql】最流行的python mysql库MySQLdb,也有人用msyql官网的mysql-connector-python。
他们都是mysql的connector和api部分。
MySQLdb实现了mysql c api,具有优越的性能,下面初步介绍一下MySQLdb。
安装
apt-get install libmysqlclient-dev
apt-get install python-dev
sudo pip install mysql-python
使用 mysql数据插入,更新和删除默认采用事务方式,执行完成后一定要commit才行,对于查询没这个要求。
import MySQLdb
db=MySQLdb.connect(passwd="moonpie",db="thangs")
c=db.cursor()
c.executemany(
"""INSERT INTO breakfast (name, spam, eggs, sausage, price)
VALUES (%s, %s, %s, %s, %s)""",
[
("Spam and Sausage Lover's Plate", 5, 1, 8, 7.95 ),
("Not So Much Spam Plate", 3, 2, 0, 3.95 ),
("Don't Wany ANY SPAM! Plate", 0, 4, 3, 5.95 )
] )
db.commit()
max_price=5
c.execute("""SELECT spam, eggs, sausage FROM breakfast WHERE price < %s""", (max_price,))
results = c.fetchall()
c.close()
db.close()
推荐阅读
- 宽容谁
- 我要做大厨
- 增长黑客的海盗法则
- 画画吗()
- 2019-02-13——今天谈梦想()
- 远去的风筝
- 三十年后的广场舞大爷
- 叙述作文
- 20190302|20190302 复盘翻盘
- 学无止境,人生还很长