Hello,
does anyone know how to connect to a acces database.
For testing purpose I created an access db that is located on my desktop.
I'd like to connect to and edit the table.
Here is a small sample of the code I use but I can't connect. :(
=================================================
Dim oCmd, oCtn
Set oCmd = CreateObject ("ADODB.Command")
Set oCtn = CreateObject ("ADODB.connection")
oCtn.connectionString = "Provider=MSDAORA;Persist Security Info=False;Data
Source=testEUData Source=DSN; User ID=uid; Password=pwd;"
oCtn.open
===================================================
The point is MSDAORA is not for accessing Access table but for Oracle so
it's obvious it wouldn't work that way, but I can't find the proper module to
access an MS-Access Database. so I tried most of the modules listed on my PC.
It'd be nice if someone could help.
Regards.