Skip to content

Commit 6dba151

Browse files
update comment
1 parent 6bc8c41 commit 6dba151

File tree

1 file changed

+109
-1
lines changed

1 file changed

+109
-1
lines changed

ktorm-support-sqlite/src/main/kotlin/org/ktorm/support/sqlite/InsertOrUpdate.kt

+109-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public data class InsertOrUpdateExpression(
6262
* set(it.salary, 1000)
6363
* set(it.hireDate, LocalDate.now())
6464
* set(it.departmentId, 1)
65-
* onConflict(it.id) {
65+
* onConflict {
6666
* set(it.salary, it.salary + 900)
6767
* }
6868
* }
@@ -76,6 +76,32 @@ public data class InsertOrUpdateExpression(
7676
* on conflict (id) do update set salary = t_employee.salary + ?
7777
* ```
7878
*
79+
* By default, the column used in the `on conflict` statement is the primary key you already defined in
80+
* the schema definition. If you want, you can specify one or more columns for the `on conflict` statement
81+
* as belows:
82+
*
83+
* ```kotlin
84+
* database.insertOrUpdate(Employees) {
85+
* set(it.id, 1)
86+
* set(it.name, "vince")
87+
* set(it.job, "engineer")
88+
* set(it.salary, 1000)
89+
* set(it.hireDate, LocalDate.now())
90+
* set(it.departmentId, 1)
91+
* onConflict(it.name, it.job) {
92+
* set(it.salary, it.salary + 900)
93+
* }
94+
* }
95+
* ```
96+
*
97+
* Generated SQL:
98+
*
99+
* ```sql
100+
* insert into t_employee (id, name, job, salary, hire_date, department_id)
101+
* values (?, ?, ?, ?, ?, ?)
102+
* on conflict (name, job) do update set salary = t_employee.salary + ?
103+
* ```
104+
*
79105
* @param table the table to be inserted.
80106
* @param block the DSL block used to construct the expression.
81107
* @return the effected row count.
@@ -116,6 +142,33 @@ public fun <T : BaseTable<*>> Database.insertOrUpdate(
116142
* returning id
117143
* ```
118144
*
145+
* By default, the column used in the `on conflict` statement is the primary key you already defined in
146+
* the schema definition. If you want, you can specify one or more columns for the `on conflict` statement
147+
* as belows:
148+
*
149+
* ```kotlin
150+
* val id = database.insertOrUpdateReturning(Employees, Employees.id) {
151+
* set(it.id, 1)
152+
* set(it.name, "vince")
153+
* set(it.job, "engineer")
154+
* set(it.salary, 1000)
155+
* set(it.hireDate, LocalDate.now())
156+
* set(it.departmentId, 1)
157+
* onConflict(it.name, it.job) {
158+
* set(it.salary, it.salary + 900)
159+
* }
160+
* }
161+
* ```
162+
*
163+
* Generated SQL:
164+
*
165+
* ```sql
166+
* insert into t_employee (id, name, job, salary, hire_date, department_id)
167+
* values (?, ?, ?, ?, ?, ?)
168+
* on conflict (name, job) do update set salary = t_employee.salary + ?
169+
* returning id
170+
* ```
171+
*
119172
* @since 3.6.0
120173
* @param table the table to be inserted.
121174
* @param returning the column to return
@@ -162,6 +215,33 @@ public fun <T : BaseTable<*>, C : Any> Database.insertOrUpdateReturning(
162215
* returning id, job
163216
* ```
164217
*
218+
* By default, the column used in the `on conflict` statement is the primary key you already defined in
219+
* the schema definition. If you want, you can specify one or more columns for the `on conflict` statement
220+
* as belows:
221+
*
222+
* ```kotlin
223+
* val (id, job) = database.insertOrUpdateReturning(Employees, Pair(Employees.id, Employees.job)) {
224+
* set(it.id, 1)
225+
* set(it.name, "vince")
226+
* set(it.job, "engineer")
227+
* set(it.salary, 1000)
228+
* set(it.hireDate, LocalDate.now())
229+
* set(it.departmentId, 1)
230+
* onConflict(it.name, it.job) {
231+
* set(it.salary, it.salary + 900)
232+
* }
233+
* }
234+
* ```
235+
*
236+
* Generated SQL:
237+
*
238+
* ```sql
239+
* insert into t_employee (id, name, job, salary, hire_date, department_id)
240+
* values (?, ?, ?, ?, ?, ?)
241+
* on conflict (name, job) do update set salary = t_employee.salary + ?
242+
* returning id, job
243+
* ```
244+
*
165245
* @since 3.6.0
166246
* @param table the table to be inserted.
167247
* @param returning the columns to return
@@ -210,6 +290,34 @@ public fun <T : BaseTable<*>, C1 : Any, C2 : Any> Database.insertOrUpdateReturni
210290
* returning id, job, salary
211291
* ```
212292
*
293+
* By default, the column used in the `on conflict` statement is the primary key you already defined in
294+
* the schema definition. If you want, you can specify one or more columns for the `on conflict` statement
295+
* as belows:
296+
*
297+
* ```kotlin
298+
* val (id, job, salary) =
299+
* database.insertOrUpdateReturning(Employees, Triple(Employees.id, Employees.job, Employees.salary)) {
300+
* set(it.id, 1)
301+
* set(it.name, "vince")
302+
* set(it.job, "engineer")
303+
* set(it.salary, 1000)
304+
* set(it.hireDate, LocalDate.now())
305+
* set(it.departmentId, 1)
306+
* onConflict(it.name, it.job) {
307+
* set(it.salary, it.salary + 900)
308+
* }
309+
* }
310+
* ```
311+
*
312+
* Generated SQL:
313+
*
314+
* ```sql
315+
* insert into t_employee (id, name, job, salary, hire_date, department_id)
316+
* values (?, ?, ?, ?, ?, ?)
317+
* on conflict (name, job) do update set salary = t_employee.salary + ?
318+
* returning id, job, salary
319+
* ```
320+
*
213321
* @since 3.6.0
214322
* @param table the table to be inserted.
215323
* @param returning the columns to return

0 commit comments

Comments
 (0)