vote up 0 vote down star

Hi how to copy all the tables from one mdb file to an other blank mdb file using C# code can anybody please help with the code?

Hi

Thanks for the file copy suggestion but after executing that query am getting this error"

 Error 1 Invalid token '(' in class, struct, or interface member declaration    
 C:\Documents and Settings\E457808\My Documents\Visual Studio 2005
 \Projects\19032009\trymdbpulling\WindowsApplication1\Form1.cs  
 21 28	WindowsApplication1
flag

2 Answers

vote up 0 vote down

See this example of bulk copying: http://www.codeproject.com/KB/cs/CopyDBSchemaUsingSMO.aspx

link|flag
vote up 2 vote down

Wouldn't it be easier to just copy the file, e.g.

System.IO.File.Copy("source.mdb", "dest.mdb");

If you want only the structure without the data, you could make a template database with just the tables and copy from that.

link|flag
I need to copy the tables along with the data in it. – c0d3guru Mar 18 at 11:05
Then you can use the code above, it will be far easier and faster than reading every table and making sql queries – Julien Poulin Mar 18 at 12:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.