How to create the schema.ini file?

  • Thread starter Lior M via AccessMonster.com
  • Start date
L

Lior M via AccessMonster.com

Hi all,

I need to export all of my tables, and I need to have one schema.ini file. I'm using DoCmd.TransferText, but I cant find how to create schema.ini.

Any ideas?

Thanks for any hint
Lior

PS: Here's my code:
Dim obj As AccessObject, dbs As Object

Set dbs = Application.CurrentData
' Search for open AccessObject objects in
' AllDataAccessPages collection.
For Each obj In dbs.AllTables
' Print name of obj.
Debug.Print obj.Name
' export
DoCmd.TransferText acExportDelim, , _
obj.Name, Application.CurrentProject.Path & "\\" & obj.Name & ".csv", True
Next obj
 
D

Douglas J. Steele

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