Advertisement
parabhairava

Untitled

Oct 30th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. public static void main(String[] args) {
  2. try {
  3. String dbUrl="jbdc:mysql://localhost:8083/baza";
  4. String user="root";
  5. String pass="";
  6.  
  7. Class.forName("com.mysql.jdbc.Driver");
  8. Connection veza=DriverManager.getConnection(dbUrl,user,pass);
  9. System.out.println("Uspostavljena je koneckcija izmedju baze i drivera");
  10. }catch(ClassNotFoundException e){
  11. System.out.println("Drajver nije ucitan!: "+e);
  12. }catch(SQLException sqle){
  13. System.out.println("Exception: "+sqle);
  14.  
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement