You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
292 B

class Test {
public void select() {
String a = "SELeCT id FROM ";
String b = "table";
String c = " WHERE something";
String d = a + b + c;
}
public void insert() {
int id = 10;
String a = "INSERT into table VALUES (1) WHERE id=";
String q = a + Integer.toString(id);
}
}