Click here to Skip to main content
15,886,362 members
Articles / Programming Languages / C#
Alternative
Tip/Trick

Create a blank Jet database

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
26 Nov 2010CPOL 5.2K   2  
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)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --