Advertisement
Guest User

Untitled

a guest
Jul 6th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. public class ConexaoBd {
  2. public static void main(String[] args) throws SQLException{
  3. Connection conexao = DriverManager.getConnection("jdbc:mysql://localhost:3306/usuario","root","tonhaoroot");
  4.  
  5. conexao.close();
  6. }
  7. }
  8.  
  9. public class ConexaoBd {
  10. public static void main(String[] args) throws SQLException{
  11. Class.forName("com.mysql.jdbc.Driver"); /* Aqui registra */
  12. Connection conexao = DriverManager.getConnection("jdbc:mysql://localhost:3306/usuario","root","tonhaoroot");
  13.  
  14. conexao.close();
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement