Skip to content

Commit 3d579ed

Browse files
committed
README
1 parent 92b3762 commit 3d579ed

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,15 @@ Usage
4545
.withValues("234567", "222222")
4646
.create();
4747

48+
String update1 = new SQLUpdate()
49+
.updateTable("author")
50+
.setAttributeTo("email", "dummy_email@hotmail.com")
51+
.setAttributeTo("affiliation", 1)
52+
.where(new SQLCondition()
53+
.whereAttribute("author_id")
54+
.equalsTo(123456))
55+
.create();
56+
4857
stmt.executeQuery(new SQLQuery()
4958
.select('*')
5059
.from("manuscript")

0 commit comments

Comments
 (0)