Estou trabalhando com o código
import java.sql.*;
public class TestQuery {
public TestQuery () {
}
public static void main(String args[]) {
String url="jdbc:mysql://ipmaqdobanco/banco";
Connection con;
String query = "comandos";
Statement stmt;
try {
Class.forName("com.mysql.jdbc.Driver");
}
catch (java.lang.ClassNotFoundException e) {
System.err.print("ClassNotFoundException: ");
System.err.println(e.getMessage());
}
try {
System.out.println("Trying to connect...");
con = DriverManager.getConnection (url, "", "");
System.out.println("connected!");
stmt = con.createStatement();
ResultSet result = stmt.executeQuery(query);
while (result.next()) {
String name = result.getString(1) + " " + result.getString(2);
System.out.println(name);
}
stmt.close();
con.close();
}
catch(SQLException ex) {
System.err.print("SQLException: ");
System.err.println(ex.getMessage());
}
}
}
Recebo a mensagem…
O que estou fazendo de errado?
obs.:Estou trabalhando com linux. Já baixei o arquivo dos drivers. Mas não localizo a origem dos mesmos.
Obrigado
Editado por JavaTeco. Por favor, quando tiver código no post utilize a opção Code para facilitar a visualização. Obrigado