Reputation: 167
How to connect to access data base from php 5.3.4 without using odbc connection?
Upvotes: 2
Views: 1088
Reputation: 27214
The literal answer to your question, connecting to Access using something other than ODBC is to use OLEDB. See PHP-OLEDB.
If your problem is that you're running PHP on a platform that doesn't have JET ODBC drivers (i.e., not Windows) then you should probably consider using SQLite or more Linux-friendly embedded databases.
If you're dead-set on accessing a JET database from Linux, then take a look at mdbtools.
Upvotes: 5