Guest User

Untitled

a guest
Jun 3rd, 2017
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. private static final String conne="jdbc:sqlserver://localhost:1433;databaseName=Hospitais;user=teste;password=teste";
  2.  
  3. Connection conn=null;
  4.  
  5. try{
  6. conn= DriverManager.getConnection(conne);
  7. System.out.println("Connected");
  8. }catch(SQLException e){
  9. System.out.println(e);
  10. }
Add Comment
Please, Sign In to add comment