Detected 1 occurrence(s) of ‘dbc:oracle:thin:’: public static void main(String []args)throws SQLException, ClassNotFoundException { try{ String str1="XYZ1"; String str2="XYZ2"; String str3="XYZ3"; Class.forName("oracle.jdbc.driver.OracleDriver"); Connection con=DriverManager.getConnection ("jdbc:oracle:thin:@localhost:1522:sysdba","scott","tiger"); Statement st=con.createStatement(); System.out.println("insert into t1 values ('"+str1+"','"+str2+"','"+str3+"')"); int demo=st.executeUpdate("insert into t1 values ('"+str1+"','"+str2+"','"+str3+"')"); i Source: http://pastie.org/pastes/8961780/download
↧