Z
zbiszko
Hello
how can I get all databeses from mysql database?
I was trying such code, but without any results
Connection con;
con = getConnection("jdbc:mysql://localhost:3306", "root",
"pasword");
Statement st = (Statement) con.createStatement();
ResultSet rs = st.executeQuery("Show databases;");
Thanks for any hepl
Zbiszko
how can I get all databeses from mysql database?
I was trying such code, but without any results
Connection con;
con = getConnection("jdbc:mysql://localhost:3306", "root",
"pasword");
Statement st = (Statement) con.createStatement();
ResultSet rs = st.executeQuery("Show databases;");
Thanks for any hepl
Zbiszko