Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
public class Test {
public static void main(String args[]) throws Exception {
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test");
for (int i = 0; i < 3; i++) {
aaa(conn, "Joh's hhh");
aaa(conn, "Joh's Dad's ouse");
aaa(conn, "Jack's Mother's Da'dss's ''' hhh");
}
conn.close();
}
public static void aaa(Connection conn, String value) throws Exception {
value = value.replaceAll("'", "''");
Statement s = conn.createStatement();
s.executeUpdate("insert into test values ('" +value +"')");
s.close();
}
}