sprakash has asked for the wisdom of the Perl Monks concerning the following question:
Thing is that I need the code which I can just dump in a Perl script which does the same thing. The host does not have a control panel or anything where I can specify the databse DNS...... they want me to make a direct access to the database file on "_private/db1.mdb". How can I do this? Please help. I would really appreciate it. Thanks, SPstrPathInfo = Request.Servervariables("APPL_PHYSICAL_PATH") strConnection="Driver={Microsoft Access Driver (*.mdb)};DBQ=" & strPat +hInfo & "\_private\db1.mdb" Set objRecset=Server.CreateObject("ADODB.Connection") objRecset.open "Driver={Microsoft Access Driver (*.mdb)};DBQ=" & serve +r.mappath(".") & "\_private\db1" sqlstatement="SELECT email, password FROM surya" objRecset.Execute($sqlstatement) objRecset.Close set objRecset=Nothing
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Trouble with accessing MS Access database via Perl on web host........
by repson (Chaplain) on Dec 13, 2000 at 13:52 UTC | |
by repson (Chaplain) on Dec 13, 2000 at 14:25 UTC | |
by Anonymous Monk on Jul 24, 2002 at 09:15 UTC | |
|
Re: Trouble with accessing MS Access database via Perl on web host........
by $code or die (Deacon) on Dec 13, 2000 at 16:49 UTC |