public void testUsingSingleUpdates() throws Exception {
final JdbcDataContext dc = new JdbcDataContext(conn);
final Schema schema = dc.getDefaultSchema();
dc.executeUpdate(new CreateTable(schema, "test_table").withColumn("id").ofType(ColumnType.VARCHAR));
final Table table = schema.getTableByName("test_table");
dc.executeUpdate(new InsertInto(table).value(0, "foo"));
dc.executeUpdate(new InsertInto(table).value(0, "bar"));