SQLContainer container = new SQLContainer(query);
RowItem ri = (RowItem) container.getItem(container.addItem());
ri.getItemProperty("NAME").setValue("Viljami");
StatementHelper sh = sg.generateInsertQuery("people", ri);
Assert.assertTrue("INSERT INTO people (\"NAME\", \"AGE\") VALUES (?, ?)"
.equals(sh.getQueryString())
|| "INSERT INTO people (\"AGE\", \"NAME\") VALUES (?, ?)"
.equals(sh.getQueryString()));
}