Guest User

Untitled

a guest
Jan 2nd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. private void iniciaConexao() throws SQLException {
  2. try {
  3. Class.forName("com.mysql.jdbc.Driver");
  4. } catch (ClassNotFoundException e) {
  5. e.printStackTrace();
  6. }
  7. conexao = DriverManager.getConnection("jdbc:mysql://sql10.freemysqlhosting.net:3306/NOME DO BD","NOME USUARIO", "SENHA");
  8.  
  9. }
Add Comment
Please, Sign In to add comment