测试sq3数据库,读取数据库把内容输出到csv文件,附上输出到excel方法

import csv
#import xlwt
import sqlite3
#wbk=xlwt.Workbook()
#sheet=wbk.add_sheet('sheet 1')
#sheet.write(0,0,'RecNO')
'''
sheet.write(0,0,'recordid')
sheet.write(0,1,'ndsDbsupplierId')
sheet.write(0,2,'productId')
sheet.write(0,3,'updateRegionId')
sheet.write(0,4,'buildingBlockId')
sheet.write(0,5,'testId')
sheet.write(0,6,'testName')
sheet.write(0,7,'testCaseStatus')
sheet.write(0,8,'result')
sheet.write(0,9,'numFailed')
'''
csvfile = file(r'result.csv','wb')
writer = csv.writer(csvfile)
writer.writerow(['recordid', 'ndsDbsupplierId', 'productId','updateRegionId','buildingBlockId','testId','testName','testCaseStatus','result','numFailed'])
row=1
conn = sqlite3.connect(r"\\30.28.13.128\ancs2\project\MPT\result.sq3")
cursor=conn.cursor()
cursor.execute('select * from testOverviewTable')
for recordid,ndsDbsupplierId,productId,updateRegionId,buildingBlockId,testId,testName,testCaseStatus,result,numFailed in cursor.fetchall():
    data = [(recordid,ndsDbsupplierId,productId,updateRegionId,buildingBlockId,testId,testName,testCaseStatus,result,numFailed)]
    '''
    #sheet.write(row,0,RecNO)
    sheet.write(row,0,recordid)
    sheet.write(row,1,ndsDbsupplierId)
    sheet.write(row,2,productId)
    sheet.write(row,3,updateRegionId)
    sheet.write(row,4,buildingBlockId)
    sheet.write(row,5,testId)
    sheet.write(row,6,testName)
    sheet.write(row,7,testCaseStatus)
    sheet.write(row,8,result)
    sheet.write(row,9,numFailed)
    row+=1
    '''
    writer.writerows(data)
#wbk.save(r'maptestresult.xls')
csvfile.close()
cursor.close()
conn.commit()
conn.close()

 

转载于:https://www.cnblogs.com/BUGU/p/5197248.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值