Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have 2 PC in LAN one of them is server content my DB(MYsql) so I wont to connect to the server via the another PC >

i use to connect delphi with Mysql in the same PC with the connector and ODBC

pLS HELP ME

share|improve this question
Maybe the answer to this question stackoverflow.com/questions/2918016/… can help you. – RRUZ Jun 16 '12 at 16:44

1 Answer

Write the database computer's name or IP-address after Server= in the connection string. For example:

Driver={MySQL ODBC 5.1 Driver};Server=myServerAddress;Database=myDataBase;User=myUsername; Password=myPassword;Option=3;

more examples here http://www.connectionstrings.com/mysql#p31

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.