65.9K
CodeProject is changing. Read more.
Home

Create a blank Jet database

starIconstarIconstarIconstarIconstarIcon

5.00/5 (1 vote)

Nov 23, 2010

CPOL

1 min read

viewsIcon

9174

I like to use the old JET API to manipulate ACCESS Databases.In C# 4 all you need to create a blank JET database is add a reference to Microsoft.Office.Interop.Access.Dao library in your WINDOWS FORMS project, and two simple lines of code: var engine=new DBEngine(); var...