Export syntax to DBASE

I

ike

Hi all-

Do you know what the syntax code is to automatically
export a SQL table to a DBASE file format? I have to
embed this code behind the scenes so the user does not
have to manually export it. Thanks!

Ike
 
D

Dan

-----Original Message-----
Hi all-

Do you know what the syntax code is to automatically
export a SQL table to a DBASE file format? I have to
embed this code behind the scenes so the user does not
have to manually export it. Thanks!

Ike
.
Hey Ike

Syntax is as follows:

DoCmd.TransferDatabase acExport, "dBase iv", "c:\Folder\",
acTable, "AccessTableName", "Output.dbf"

Make sure you save the output file name is in DOS 8.3
format.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top