Could not find installable ISAM.
Posted: Mon Jan 15, 2007 10:19 pm
I have no idea why I get this error but I do and I'm about ready to slam my head through a brick wall.
Source: Microsoft JET Database Engine
Description: Could not find installable ISAM.
I am trying to access tables from Navision 4.0 running their native Database Engine. I set up a DSN that the Database uses to access the linked tables. It all works fine on the system but as soon as I use PHP I get all kinds and manner of stupid errors.
I was going to try to go through an Access database but that didn't work either.
Server is Windows 2000 running IIS whatever crappy version comes with it.
I've been here for 13 hours, I'm done. See ya guys tomorrow.
Source: Microsoft JET Database Engine
Description: Could not find installable ISAM.
I am trying to access tables from Navision 4.0 running their native Database Engine. I set up a DSN that the Database uses to access the linked tables. It all works fine on the system but as soon as I use PHP I get all kinds and manner of stupid errors.
I was going to try to go through an Access database but that didn't work either.
Server is Windows 2000 running IIS whatever crappy version comes with it.
I've been here for 13 hours, I'm done. See ya guys tomorrow.
Code: Select all
try
{
$conn = new COM('ADODB.Connection') or exit('Cannot start ADO.');
// Two ways to connect. Choose one.
$conn->Open('Provider=Microsoft.Jet.OLEDB.4.0; Data Source="Navision 4.0"; UID=edited; PWD=;');
$sql = 'SELECT [Entry No_] FROM [G/L Entry]';
$rs = $conn->Execute($sql);
}
catch (Exception $e)
{
echo $e->getMessage();
}