// from now on on an operation on that table should be detected and should start fill the repl_items table
st = conn.createStatement();
st.executeUpdate("DELETE FROM " + this.replPrefix + "items");
st.close();
st = conn.createStatement();
st.executeUpdate("INSERT INTO " + tableName + " VALUES ('somebody', 'Paris')");
st.close();
// now it should be in " + this.replPrefix + "items ...
st = conn.createStatement();
rs = st.executeQuery("SELECT * FROM " + this.replPrefix + "items");