Mick Dugan
Well-known member
- Joined
- Jun 15, 2003
- Messages
- 45
As a novice programmer, I
I would say, ADO has nothing in common with a specific database model. So it doesnt know anything about the binary format of a mdb file or any other database format and you cant generate a mdb file out of the box.AlexCode said:I believe you can do that if you use ADO 2.7 (not ADO .net).
And here we go. Alex is right and Im a bit rusty with Access. :-\AlexCode said:Take a look at the ADOX dll...
Dim constr As String = "provider=microsoft.jet.oledb.4.0;data source=c:\\adoxtest.mdb"
Dim cat As New ADOX.Catalog
cat.Create(constr)