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

全部博文(2065)

文章存档

2012年(2)

2011年(19)

2010年(1160)

2009年(969)

2008年(153)

分类: Python/Ruby

2009-09-03 15:35:18

try:
            conn=self.connect()
            curs = conn.cursor()
            curs.execute(_sql)
            rows = curs.fetchall()
           # for record in rows:
           #     self.hostList.append(record[1])
            conn.close()
            return rows            
        except Exception,e:
            self.log.log(str(e))
            exit(0)
这样的写法就有点类似于PHP中的

fetchall()会返回 ((2L, 'ba'), (3L, 'bca'))

遍历这个结果集的方法:
for ele in rows:
        print ele[1]

元组中套元组!



阅读(956) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~