【Access源码示例】-导入导出系列-根据SQL语句导出数据到txt记事本
时 间:2012-08-20 09:24:07
作 者:金宇 ID:43 城市:江阴
摘 要:可以自己指定sql语句导出,并且可以指定导出的分隔符号“,”、“|”、“;”、空格、制表符等
正 文:
'=====================================================
'函数名称: SQLExportToTxt
'功能描述: 根据SQL语句导出数据到记事本
'输入参数: strSQL 必选的。select选择性SQL语句
' FileName 可选。导出的记事本文件名
' Separator 可选。分隔符,可以是“,”、“|”、“;”、空格、制表符
'返回参数: 无
'使用示例: SQLExportToTxt "select * from 表名称/查询名称","导出数据.txt",","
'作 者: 金宇
'创建日期: 2012-8-19
'=====================================================
Public Function SQLExportToTxt(ByVal strSQL As String, ByVal FileName As String, ByVal Separator As Variant)
On Error GoTo Err_ExportToTxt
Dim intI As Integer
Dim intMsgResult As VbMsgBoxResult
Dim rstCount As Long
Dim rst As Adodb.Recordset
Dim FileNumber As Integer
Dim sText As String
Dim I As Long
rstCount = CurrentProject.Connection.Execute("select count(*) from (" & strSQL & ") as temp_A")(0).Value '取总的记录数
If rstCount = 0 Then
MsgBox ("没有数据可导出!"), vbExclamation, "提示"
Exit Function
End If
If Trim$(FileName) = "" Then FileName = "导出的数据.txt"
If Not FileName Like "*.txt" Then
FileName = FileName & ".txt"
End If
If Not (FileName Like "[A-z]:\*" or FileName Like "\\*") Then
With Application.FileDialog(2)
.InitialFileName = FileName
.AllowMultiSelect = False
If .Show Then
FileName = .SelectedItems(1)
Else
Exit Function
End If
End With
End If
'如果txt文件已存在,则先删除
If Dir(FileName) <> "" Then Kill FileName
Set rst = New Adodb.Recordset
rst.Open strSQL, CurrentProject.Connection, 1, 1
FileNumber = FreeFile ' Get unused file number
Open FileName For Append As #FileNumber ' Connect to the file
Do While Not rst.EOF
sText = ""
For intI = 0 To rst.Fields.Count - 1
sText = sText & rst.Fields(intI) & Separator
Next
sText = Left(sText, Len(sText) - 1)
Print #FileNumber, sText ' Append our string
rst.MoveNext
Loop
rst.Close
Close #FileNumber ' Close the file
intMsgResult = MsgBox("数据已导出,是否打开并查看?", vbQuestion + vbYesNo)
If intMsgResult = vbYes Then ShellEx (FileName) '打开文件
Exit_ExportToTxt:
On Error Resume Next
DoCmd.Hourglass False
Exit Function
Err_ExportToTxt:
If Err = 70 Then
MsgBox "无法删除文件 '" & FileName & "',可能该文件已被打开或没有权限。", vbCritical
Else
MsgBox Err.Source & " #" & Err & vbCrLf & vbCrLf & Err.Description, vbCritical
End If
Resume Exit_ExportToTxt
End Function
附 件:
演 示:
Access软件网QQ交流群 (群号:54525238) Access源码网店
常见问答:
技术分类:
源码示例
- 【源码QQ群号19834647...(12.17)
- 统计当月之前(不含当月)的记录...(03.11)
- 【Access Inputbo...(03.03)
- 按回车键后光标移动到下一条记录...(02.12)
- 【Access Dsum示例】...(02.07)
- Access对子窗体的数据进行...(02.05)
- 【Access高效办公】上月累...(01.09)
- 【Access高效办公】上月累...(01.06)
- 【Access Inputbo...(12.23)
- 【Access Dsum示例】...(12.16)

学习心得
最新文章
- 仓库管理实战课程(9)-开发往来单...(04.02)
- 仓库管理实战课程(8)-商品信息功...(04.01)
- 仓库管理实战课程(7)-链接表(03.31)
- 仓库管理实战课程(6)-创建查询(03.29)
- 仓库管理实战课程(5)-字段属性(03.27)
- 设备装配出入库管理系统;基于Acc...(03.24)
- 仓库管理实战课程(4)-建表操作(03.22)
- 仓库管理实战课程(3)-需求设计说...(03.19)
- 仓库管理实战课程(2)-软件背景和...(03.18)
- 仓库管理实战课程(1)-讲师介绍(03.16)