Reputation: 937
I have a wierd question from my Client but need some technical details to justify his madness. Is it possible to connect to a mysql server which is on the same server as the application server i.e tomcat to connect without tcp. We are using jdbc and mysql driver to connect to the database from the application. Can anyone help me to draft some details or make me understand if am missing any.
Thanks, Sirish.
Upvotes: 0
Views: 277
Reputation: 16362
You can pass --protocol
and select one of {TCP|SOCKET|PIPE|MEMORY}
. See the doc: http://dev.mysql.com/doc/refman/4.1/en/connecting.html
Upvotes: 1