1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| Class.forName("com.mysql.jdbc.Driver");
Connection connection = DriverManager.getConnection("jdbc:mysql://59.110.213.97:3306/test?useSSL=false", "root", "GHn,.155070");
String sql = " insert into table_test(id,number) values(null,10086)";
Statement statement = connection.createStatement();
int count = statement.executeUpdate(sql); System.out.println(count);
statement.close(); connection.close();
|