Click here to Skip to main content
15,949,686 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i am creating a c# application through (through a query)which i am creating ms access database in window7 and ms access 2007 they the database created by default in ms access 2007 but i want that database in ms access 2000.
C#
public static void CreateAccessDatabase()
       {
           try
           {


               Catalog cat = new Catalog();

               cat.Create("Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=D:testdb2.mdb");
               MessageBox.Show("Database Created Successfully");

               cat = null;
           }
           catch { }


       }


their is any option to convert ms access 2007 to ms access 2000 db file
Posted
Updated 6-May-14 1:29am
v2

1 solution

See this: How to create an Access database by using ADOX and Visual C# .NET[^] - there you'll find a method to create MS Access 2000 database ;)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900