I'm trying to connect to an access database over a UNC path (windows)... I can run an is_file, so I'm certain I'm seeing the file... but I can't seem to open the db...
Here's my connection string
Where DATABASE is just a constant defining my UNC path to the .mdb file.
Thanks,
Rob
Here's my connection string
Code:
$conn->Open("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=".DATABASE.";Mode=ReadWrite;Persist Security Info=False") or die("Could not connect to ".DATABASE);
Where DATABASE is just a constant defining my UNC path to the .mdb file.
Thanks,
Rob