php odbc_connect not connecting with sybase database.
I set up a web site using php to talk to a sybase db (already in use for a in-house application) via a odbc connection, so users in the field could access the in-house db. This was on a 2003 NT server, and everything worked fine.
Then I set up a similar site on an XP Pro machine (this time, by myself), and while the web site is accessible, and the php programming works, the php pages cannot access the db. I get no errors, I've checked phpinfo between the two sites (working and non-working) and have come up with no ideas.
Convinced the connect to database via odbc not working, should the configuration on an XP Pro be different than from a 2003 NT machine? ODBC is set up the same way on both machines.
Source Code below:
$db_host = "wintermlocal"; $db_server_name = "winpest"; $db_name = "windata.db"; $db_file = "c:\data\windata.db"; $db_conn_name = "php_script"; $db_user = "dba"; $db_pass = "sql"; //================================================================ $connect_string = "Driver={Adaptive Server Anywhere 7.0};" ."CommLinks=tcpip(Host=$db_host);" ."ServerName=$db_server_name;" ."DatabaseName=$db_name;" ."DatabaseFile=$db_file;" ."ConnectionName=$db_conn_name;" ."uid=$db_user;pwd=$db_pass"; //================================================================
$connect = odbc_connect($connect_string,'',''); ?>
ERROR RETURNED LISTED BELOW -----
Warning: odbc_connect() [function.odbc-connect]: SQL error: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified, SQL state IM002 in SQLConnect in C:\Inetpub\wwwroot\allpro\apptlist1.php on line 22
