Sorry if my english isn't very good
I'm trying to connect to a remote database on a Android aplication
with this code:

        Driver d = (Driver)
Class.forName("org.h2.Driver").newInstance();
        String url = "jdbc:h2:tcp:10.27.11.139:9092/DES_DB";
        Connection c = DriverManager.getConnection(url, "sa", "");

I can connect with a desktop aplication, but doesn't work on Android.

H2 doesn't support remote connection for Android??

Thanks!

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.

Reply via email to