ODBC Connection to Omnis Database

I'd been looking at this for ages, but I've finally figured it out.

I'm posting this here in case anyone else in the future requires the info.

Using PHP/ODBC to connect to an Omnis Database (*.df1).

Here is the php

$dsn="DRIVER={OMNIS ODBC Driver};DataFilePath=C:FILENAME.df1;UserID='';Password=''";

$conn=odbc_connect ($dsn,'username','password');

0 answers