标题:access 数据写进 excel 对吗?
只看楼主
xiongjl9555
Rank: 2
来 自:深圳南山区
等 级:论坛游民
帖 子:124
专家分:10
注 册:2008-5-27
结帖率:57.14%
 问题点数:0 回复次数:0 
access 数据写进 excel 对吗?
我想将数据库access 中的数据写进 excel 表格中,这样写对吗?当然前面有连接数据库的语句。
set Exrs=server.CreateObject("adodb.recordset")
sql="select * from incident order by id desc"
Exrs.Open sql,conn,1,1
Exrs.movefirst
i=2
 do while not Exrs.EOF
    objExcel.Cells(i, 1).Value =Exrs("id")      
    objExcel.Cells(i, 2).Value =Exrs("姓名")
    objExcel.Cells(i, 3).Value =Exrs("住址")
    objExcel.Cells(i, 4).Value =Exrs("电话号码")
  
    i = i + 1
    Exrs.movenext
Loop
Exrs.close
搜索更多相关主题的帖子: excel Exrs access 数据库 Value 
2008-08-13 23:39



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-228193-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.302169 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved