Chinaunix首页 | 论坛 | 博客
  • 博客访问: 29312524
  • 博文数量: 2065
  • 博客积分: 10377
  • 博客等级: 上将
  • 技术积分: 21525
  • 用 户 组: 普通用户
  • 注册时间: 2008-11-04 17:50
文章分类

全部博文(2065)

文章存档

2012年(2)

2011年(19)

2010年(1160)

2009年(969)

2008年(153)

分类: Python/Ruby

2010-06-25 16:16:13

#-*-coding:utf-8-*-
import MySQLdb
conn = MySQLdb.connect("localhost","root","321","tymoney",port=3306,connect_timeout=10,compress=True,charset='utf8',use_unicode=True)
cursor=conn.cursor()
cursor.execute("select count(*) from accountrecord ")
row = cursor.fetchone()
recordtotal = row[0]
perrecord = 50
if recordtotal % perrecord != 0:
    totalpage = recordtotal/perrecord + 1
else:totalpage = recordtotal/perrecord
for i in xrange(0,totalpage):
    prelimit = i*perrecord
    dysql = "select * from accountrecord limit " + str(prelimit) + "," + str(perrecord)
    print dysql


阅读(1112) | 评论(1) | 转发(0) |
0

上一篇:linux性能调优命令精华

下一篇:网上学习

给主人留下些什么吧!~~

chinaunix网友2010-06-25 16:16:42

模拟分页批量处理数据用的!