devxlogo

Opening Password-Protected Databases

Opening Password-Protected Databases

Use the connect parameter of the OpenDatabase method to open adatabase that is password-protected in VB4-32. For example, thiscode opens the Secure database with a password of “dirt”:

 Dim wrk As WorkspaceDim dbTest As DatabaseSet wrk = DBEngine.Workspaces(0)' Open Secure database with a ' password of "dirt".Set dbTest = wrk. _        OpenDatabase("Secure.mdb", _        False, False, ";PWD=dirt")

The connect parameter is case sensitive. In addition, and contraryto the VB documentation, you must set the exclusive and read-onlyparameters (the second and third parameters) when using the connectparameter.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist