本月博客排行
-
第1名
lerf -
第2名
bosschen -
第3名
paulwong - fantaxy025025
- johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- e_e
- gengyun12
- benladeng5225
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- tanling8334
- arpenker
- gaojingsong
- xpenxpen
- kaizi1992
- wiseboyloves
- jh108020
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- zxq_2017
- nychen2000
- lzyfn123
- wjianwei666
- forestqqqq
- ajinn
- siemens800
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
- kingwell.leng
最新文章列表
python中executemany和序列的应用
一 代码
import sqlite3
persons=[
("Jim","Green"),
("Hu","jie")
]
conn=sqlite3.connect(":memory:")
conn.execute("CREATE TABLE pers ...
python中executemany和生成器的应用
一 代码
import sqlite3
import string
def char_generator():
for c in string.ascii_lowercase:
yield(c)
conn=sqlite3.connect(":memory:")
cur=conn.cursor()
cur.execute("CRE ...
python中executemany和迭代器的应用
一 代码
import sqlite3
class IterChars:
def __init__(self):
self.count = ord('a')
def __iter__(self):
return self
def __next__(self):
if self.count>ord('z') ...
python中MySQLdb的execute和executemany的使用
如果使用executemany对数据进行批量插入的话,要注意一下事项:
conn = MySQLdb.connect(host = “localhost”, user = “root”, passwd = “password”, db = “myDB”, charset=’utf8′)
cursor = conn.cursor()
sql = “insert into myTable (creat ...