currently i am connecting to a database that is in the same folder as my php file but i want to connect to database that is somewhere else on the network.
here is what i am doing now
$db_connection = new COM("ADODB.Connection"
;
$db_connstr = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=".
realpath("../ceg/CEDatabase.mdb"
." ;DefaultDir=". realpath("../ceg"
;
$db_connection->open($db_connstr);
the full file location is \\150.45.1.128\\ i want to connect to database that is at
\\ttc_main\vol1\ttcshared\CCC21 Cost Engineering\Database\CEDatabase.mdb
Is this possible???
and if so what do i need to do???
thanks
here is what i am doing now
$db_connection = new COM("ADODB.Connection"
$db_connstr = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=".
realpath("../ceg/CEDatabase.mdb"
$db_connection->open($db_connstr);
the full file location is \\150.45.1.128\\ i want to connect to database that is at
\\ttc_main\vol1\ttcshared\CCC21 Cost Engineering\Database\CEDatabase.mdb
Is this possible???
and if so what do i need to do???
thanks