Package br.com.objectos.way.relational

Examples of br.com.objectos.way.relational.Insert.toUpdate()


  public void insert_should_be_converted_to_update() {
    Insert insert = Insert.into("MY_TABLE")
        .value("COL1", "A")
        .value("COL2", "B");

    String sql = insert.toUpdate(new PrimaryKey(123));

    assertThat(sql, equalTo("update MY_TABLE set `COL1`=?, `COL2`=? where `ID`=?"));
  }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.