0

iam working on a project i need to connect php with the access database in the clients computer Is there any way i do this with out using ODBC and creating data source?

for example: in JRE8.x.x we can connect java with access database without ODBC by using UcanAccess. but what for PHP?

5
  • You can use PDO Commented Jul 29, 2015 at 18:25
  • also in Pdo i have to use ODBC.... can you give me a code dont use ODBC Commented Jul 29, 2015 at 18:35
  • You could use ODBTP. That would avoid ODBC on your machine (the one running PHP), but it would require ODBC on the machine with the Access database on it. Or, you could use COM in PHP with an OleDB provider. Commented Jul 29, 2015 at 18:46
  • 1
    Why not switch off of Access to a real database system like mysql already? Commented Jul 29, 2015 at 18:49
  • I should point out that in an intranet environment you could have a mysql or mssql server house the data, and then make MS Access files that can access (both read and write) the data via link tables. (But those Access files would use ODBC to connect to the server obviously) Commented Jul 29, 2015 at 18:51

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.