># Define the connection string
>my $prov = "Provider=Microsoft.Jet.OLEDB.4.0; ";
>my $dsourc = "Data Source=C:\\inetPub\\wwwroot\\dbfolder\\database.mdb; ";
>my $dbprog = "Jet OLEDB:Database; ";
>my $pw = "Password=password4;";
>my $dbopen = $prov . $dsourc . $dbprog . $pw
I'm having trouble opening a database with a password using
PearlScr.bADO/OLE-DB/ASP. I am using an MS Access database. I can open
and use a database just fine that does not have a password, but my problem
must be with the syntax of the connection string with a password. I am
using basica