@@ -62,7 +62,7 @@ public data class InsertOrUpdateExpression(
62
62
* set(it.salary, 1000)
63
63
* set(it.hireDate, LocalDate.now())
64
64
* set(it.departmentId, 1)
65
- * onConflict(it.id) {
65
+ * onConflict {
66
66
* set(it.salary, it.salary + 900)
67
67
* }
68
68
* }
@@ -76,6 +76,32 @@ public data class InsertOrUpdateExpression(
76
76
* on conflict (id) do update set salary = t_employee.salary + ?
77
77
* ```
78
78
*
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
+ *
79
105
* @param table the table to be inserted.
80
106
* @param block the DSL block used to construct the expression.
81
107
* @return the effected row count.
@@ -116,6 +142,33 @@ public fun <T : BaseTable<*>> Database.insertOrUpdate(
116
142
* returning id
117
143
* ```
118
144
*
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
+ *
119
172
* @since 3.6.0
120
173
* @param table the table to be inserted.
121
174
* @param returning the column to return
@@ -162,6 +215,33 @@ public fun <T : BaseTable<*>, C : Any> Database.insertOrUpdateReturning(
162
215
* returning id, job
163
216
* ```
164
217
*
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
+ *
165
245
* @since 3.6.0
166
246
* @param table the table to be inserted.
167
247
* @param returning the columns to return
@@ -210,6 +290,34 @@ public fun <T : BaseTable<*>, C1 : Any, C2 : Any> Database.insertOrUpdateReturni
210
290
* returning id, job, salary
211
291
* ```
212
292
*
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
+ *
213
321
* @since 3.6.0
214
322
* @param table the table to be inserted.
215
323
* @param returning the columns to return
0 commit comments