How do I open database with password??
I tried this
set db = opendatabase("c:\dd.mdb",,,";pwd=password")
but the respons was "Not a valid password"
Any idee?
Icesoft
Printable View
How do I open database with password??
I tried this
set db = opendatabase("c:\dd.mdb",,,";pwd=password")
but the respons was "Not a valid password"
Any idee?
Icesoft
Is 'password' a real password? Try opening it without anything:
Set db = opendatabase("C:\mydb.mdb")
I found the answear to this my self after few hours of sleep.
set set db = opendatabase("c:\dd.mdb",0,0,";pwd=password")
that works thanx anyway (and sorry for my spelling)
IceSoft