标签:
每天学习一点点,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‘)
标签:
原文地址:http://www.cnblogs.com/xiguain/p/4173808.html