InsertList command = new InsertList(id, db, key, beforeAfter, pivot, value);
command.execute();
}
public void setValue(int id, int db, String key, int index, String value) {
SetValue command = new SetValue(id, db, key, index, value);
command.execute();
}