Advertisement
Guest User

Untitled

a guest
Sep 27th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. package Models;
  2.  
  3. public class Main
  4. {
  5. private static String url = "jdbc:sqlserver://localhost;database=DemoDatabaseNAV5-0;user=LETA-PC\\Leta;password=password;integratedSecurity=true";
  6. public static void main(String[] argv)
  7. {
  8. // Launch Program
  9. System.out.println("Starting");
  10. Controller controller = new Controller(url);
  11.  
  12. try
  13. {
  14. new GUI(controller);
  15. }
  16. catch (Exception e)
  17. {
  18. e.printStackTrace();
  19. }
  20. }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement