Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C#

Create a blank Jet database

0.00/5 (No votes)
26 Nov 2010CPOL 5.3K  
This line:ADOX.CatalogClass cat = new ADOX.CatalogClass();may not work if you are using C# 4.0+You will needADOX.Catalog cat = new ADOX.Catalog();For a completed method checkout:http://zamirsblog.blogspot.com/2010/11/creating-access-database.html[^]

This line:


ADOX.CatalogClass cat = new ADOX.CatalogClass();

may not work if you are using C# 4.0+


You will need


ADOX.Catalog cat = new ADOX.Catalog();

For a completed method checkout:


http://zamirsblog.blogspot.com/2010/11/creating-access-database.html[^]

License

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