VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Connecting to a password enabled database using ADODB object....

by HyperDex (1 Submission)
Category: Databases/Data Access/DAO/ADO
Compatability: Visual Basic 5.0
Difficulty: Unknown Difficulty
Originally Published: Sun 9th May 2004
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Connecting to a password enabled database using ADODB object....

API Declarations


'MS ACCESS 2000 and set its database password to DEXTER
'Create a module and write this down

public hyper as ADODB.Connection

sub connectme()
on error goto errhandler
set hyper = new ADODB.Connection
'Using a JET 4.0 Provider in an MS Access 2000 database

hyper.Open "Provider=Microsoft.Jet.OLEDB.4.0;" _
"Data Source=C:\mydatabse.mdb;Persist Security Info=False;" _
"Database Password=dexter"

msgbox "Connection Established"...
exit sub

errhandler:
msgbox "Connection Error.. " + Err.Description
end sub

Rate Connecting to a password enabled database using ADODB object....





Private Sub cmdconnect_click()
connectme
End sub



Download this snippet    Add to My Saved Code

Connecting to a password enabled database using ADODB object.... Comments

No comments have been posted about Connecting to a password enabled database using ADODB object..... Why not be the first to post a comment about Connecting to a password enabled database using ADODB object.....

Post your comment

Subject:
Message:
0/1000 characters