|
-
Oct 6th, 2002, 02:36 PM
#1
Thread Starter
Fanatic Member
exporting tables from access
how could i export a table from access in dbase format without using access core libraries if possible using ado or adox or even dao
thnks
-
Oct 6th, 2002, 02:38 PM
#2
PowerPoster
Well
This won't work for you?
VB Code:
Dim Myaccess As Access.Application
Set Myaccess = CreateObject("Access.Application")
With Myaccess
.Visible = False
.OpenCurrentDatabase (TimeDatabase)
' Try to replace this area for text files
.DoCmd.TransferDatabase acExport, "dbaseIV", "c:\osmsys\data\rarch", , "DATATABLE", "OUTSOURCE.dbf"
.Quit
End With
Why not?
Remaining quiet down here !!!
BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....
-
Oct 6th, 2002, 02:46 PM
#3
Thread Starter
Fanatic Member
i remember that James but that needs access installed no thats no good
-
Oct 6th, 2002, 03:12 PM
#4
PowerPoster
Well
Perhaps you could recreate the table in code.
Remaining quiet down here !!!
BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....
-
Oct 6th, 2002, 03:19 PM
#5
Thread Starter
Fanatic Member
u could use a statemant like
Code:
SELECT [Id],[f] INTO [dBASE III;Database=E:\Documents and Settings\Administrator\Desktop\New Folder (3)].[e.dbf] FROM [Table1]
but that doesn't create index files and withut index files the speed is very slow
-
Oct 7th, 2002, 02:54 AM
#6
As a question - can you not use the statement you posted but then reopen it and add in the indexes?
Does it have to be dbase? Could be csv??
Vince
Feeling like a fly on the inside of a closed window (Thunk!)
If I post a lot, it is because I am bored at work! ;D Or stuck...
* Anything I post can be only my opinion. Advice etc is up to you to persue...
-
Oct 7th, 2002, 07:02 AM
#7
Thread Starter
Fanatic Member
thnks for the effort Ecniv found the solution by using ADOX i think thats the best library ever very easy and cause i m little curius what exactly is cvs
-
Oct 7th, 2002, 07:39 AM
#8
text file comma separated variable
np... good that you found the answer ADOX is it then huh ? 
Vince
Feeling like a fly on the inside of a closed window (Thunk!)
If I post a lot, it is because I am bored at work! ;D Or stuck...
* Anything I post can be only my opinion. Advice etc is up to you to persue...
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|