connecting to a remote MySQL server using a http proxy server

I'm trying to connect remotely to a MySQL database. The problem is that I'm using a http proxy server to filter my Internet connection.How can I tell JDBC that I'm behind a proxy.Any links or info are highly appreciated.Thank you
[260 byte] By [nopceafrancisca] at [2007-11-27 4:34:57]
# 1

Your program doesn't use HTTP. Your MySQL server doesn't use HTTP. So if you want to use an HTTP proxy server to connect the two, you also need two other proxies.

On the inside you need something to convert the JDBC protocol to HTTP. And on the outside you need something to convert that HTTP back to the JDBC protocol.

I don't believe those things exist, at least my 30 seconds of googling didn't find anything. Read this post and all the responses to it:

http://lists.mysql.com/win32/18177

And if I were you I would start looking for some other solution.

DrClapa at 2007-7-12 9:44:56 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...