[RESOLVED] Clueless on Database
Hi,
I am using ADODB to connect to a MS Access 2003 database from my VB6 program.This is what i have to conect to my database:
Set rdAccessconn = New ADODB.Connection '*** connect to db
With rdAccessconn
On Error GoTo ErrorHandler
.ConnectionString = "dsn=phonebook"
.Open
.CursorLocation = adUseClient
End With
However,no matter how many chnages i've made to my database,it just wont change my VB output.Anyone help me with this?Thanks in advance. :confused:
Re: [RESOLVED] Clueless on Database
That's a better connection string.