将整个Access(accdb)数据库导出到csv / txt


0

没有选项可以导出整个数据库,而Access只允许一次导出一个表。

我不熟悉任何VB脚本,所以我该怎么做呢?

必须使用以下内容导出CSV:

  1. UTF-8编码
  2. 逗号分隔
  3. 字段名称包含在第一行中

Answers:


0

您可以使用以下功能

DoCmd.TransferText(TransferType, SpecificationName, TableName, FileName, HasFieldNames, HTMLTableName, CodePage)

用这个例子

DoCmd.TransferText acExportDelim, "Standard Output", "External Report", C:\Txtfiles\MyText.csv"

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.