You are on page 1of 1

public class JDBCExemplo {

public static void main(String[] args) throws SQLException


{
Connection conexao =
DriverManager.getConnection("jdbc:mysql://localhost/fj21");
System.out.println("Conectado!");
conexao.close();
}
}

You might also like