Detected 1 occurrence(s) of ‘dbc:oracle:thin:’: ; } catch (ClassNotFoundException e) { System.out.println("Driver not found"); e.printStackTrace(); //System.exit(0); } System.out.println("JDBC driver is loaded!"); String url = "jdbc:oracle:thin:@localhost:1521:XE"; Connection conn = null; try { conn = DriverManager.getConnection(url, "hr", "hr"); System.out.println("Connection established!"); } catch (SQLException e) { e.printStack Source: http://pastebin.com/raw.php?i=LtsfN3yq
↧