slava belenky

Greenhorn
+ Follow
since Aug 14, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by slava belenky

I need to open a java.sql.Connection to a database residing on a different computer. I tried everything similar to the following:
String url = "jdbc:odbc://111.222.333.444/members"
Connection c = DriverManager.getConnection(url);
It keeps telling me can't find source. The database is registered; it's ms access. What's the correct way to write the url?