Detected 1 occurrence(s) of ‘dbc:oracle:thin:’: try { Connection conn = null; Class.forName("oracle.jdbc.driver.OracleDriver"); conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE", "SYSTEM", "radit"); Statement st = conn.createStatement(); st.execute("INSERT INTO NAMA VALUES ('RADITYA KURNIANTO')"); st.close(); conn.close(); System.out.println("Query Success"); } ca Source: http://pastebin.com/raw.php?i=JSJVDdnb
↧