I'm writing socket server in java for my flash browser based game and i need to connect to mysql database. Is it possible to connect to mysql through socket server and send received data to connected flash clients?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Yes, besides it's probably the most common way to connect to MySQL server - through a socket. I believe that the default port assigned to MySQL server is 3306, but you would need to check your configuration (my.cnf file which may be found in various places in your system) if it's not. |
|||