MySQL access from LAN
Posted: Fri Feb 19, 2010 5:24 pm
I'm having trouble accessing my phpBB database from an Xbase++ application on a networked computer.
I can get access to the database only with an app that runs on the server.
This connection string works:
This connection string doesn't work
The LAN address of the server is 192.168.0.50 but I can't connect to that address even if running on that server.
I tried adding the following to MY.INI:
Still no go.
Does anyone have experience with MySQL and ODBCDBE?
I can get access to the database only with an app that runs on the server.
This connection string works:
Code: Select all
DBE=ODBCDBE;Driver={MySQL ODBC 5.1 Driver};Uid=<myid>;Pwd=<mypwd>;Database=BulletinBoard;Server=LocalHost
Code: Select all
DBE=ODBCDBE;Driver={MySQL ODBC 5.1 Driver};Uid=<myid>;Pwd=<mypwd>;Database=BulletinBoard;Server=192.168.0.50
I tried adding the following to MY.INI:
Code: Select all
bind-address=0.0.0.0
Does anyone have experience with MySQL and ODBCDBE?