vote up 4 vote down star
2

I realize that since UNIX sockets are platform-specific, there has to be some non-Java code involved. Specifically, we're interested in using JDBC to connect to a MySQL instance which only has UNIX domain sockets enabled.

It doesn't look like this is supported, but from what I've read it should be at least possible to write a SocketFactory for JDBC based on UNIX sockets if we can find a decent implementation of UNIX sockets for Java.

Has anyone tried this? Does anyone know of such an implementation?

flag

6 Answers

vote up 7 vote down check

Checkout the JUDS library. It is a Java Unix Domain Socket library...

http://code.google.com/p/juds/

link|flag
Thanks, njsf, this may be just what we need! – Adam Bellaire Oct 4 '08 at 17:08
vote up 0 vote down

You could use junixsocket (released August 2009): http://code.google.com/p/junixsocket/

It already provides code for connecting to MySQL from Java (Connector/J) via Unix sockets.

link|flag
vote up 1 vote down

Some searching on the internet has uncovered the following useful-looking library:

http://www.nfrese.net/software/gnu_net_local/overview.html

Writing a socket factory should be easy enough. Once you've done so, you can pass it to your driver THUSLY.

link|flag
vote up 0 vote down

Why not just use the JDBC driver for MySQL?

link|flag
Because it uses tcp/ip sockets instead of unix domain sockets? – Paul Tomblin May 6 at 19:14
The better question is "Why not enable TCP/IP and then use the JDBC driver for MySQL?", but sometimes we don't get to make that call :) – GWLlosa May 13 at 13:36
vote up 0 vote down

As a rather unpleasant workaround, you could potentially use UnixODBC; I think its MySQL driver supports UNIX sockets.

link|flag
vote up 1 vote down

Check out the JNA library. It's a halfway house between pure Java and JNI native code

https://jna.dev.java.net/

link|flag
Thanks, Dave. It looks like we could use JNA to write our own socket implementation, then write a SocketFactory on top of it, though I was hoping to find something already written. :) – Adam Bellaire Oct 4 '08 at 16:34
Have a dig in the Jruby source, they use JNA to simulate a lot of pure ruby stuff including fork! There are also examples of a Posix class that should wrap most of the C level functions you need – Dave Cheney Oct 4 '08 at 16:49

Your Answer

Get an OpenID
or

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