Mario
Mario

Reputation: 167

connect to access database from php

How to connect to access data base from php 5.3.4 without using odbc connection?

Upvotes: 2

Views: 1088

Answers (1)

ta.speot.is
ta.speot.is

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

Related Questions