0

我正在为将导出到文本文件的访问数据库创建一个 sql 查询。要求包括分隔每行的换行符。这是默认情况下发生的,还是我需要添加的东西?如果我需要添加它,我该怎么做?

TIA

4

1 回答 1

1

TransferText 包括换行,我相当肯定大多数从 Access 中获取文本的方法都将包括换行,除非您采取措施阻止它。检查起来并不难。

Dim fs As New FileSystemObject

s = "c:\docs\test.txt"
DoCmd.TransferText acExportDelim, , "query6", s
Set f = fs.OpenTextFile(s)
a = f.ReadAll

''Split at linefeed: Chr(10)
aa = Split(a, Chr(10))

''Test 1
Debug.Print UBound(aa)

''Test 2
For Each itm In aa
    Debug.Print itm
Next
于 2010-04-15T18:24:58.697 回答