...it's been asked before. I checked in the list archives but did not find a
definitive answer.

FileMaker Pro 5 and ODBC.

I've setup an ODBC def, opened the FileMaker file (Sample06.fp5) and set the
sharing. No problems. To test it (outside of PHP) I opened up an Access
database and created a linked table via ODBC to FileMaker. Works fine.

Now, in PHP I:

<?

$conn = odbc_connect("FileMaker","","");
$query = "Select * from Sample06";
$result = odbc_exec($conn, $query);

print("Test: $result<br>\r\n");

?>

No result. Nothing. No matter how the query is structured there is no
results. Now I know FileMaker Pro is quite a bit different than other
databases. It's the client's choice, though so there's no getting rid of it.

Has anyone gotten this to work or have any insights?

Thanks,
- Erik


-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to