Slide 69
Slide 69 text
// Insert
dslContext.insertInto(USERS)
.columns(USERS.ID, USERS.NAME, USERS.AGE)
.values("kotlin", "Kotlin Fest", 3)
.execute()
// Update
dslContext.update(USERS)
.set(USERS.AGE, 4)
.where(USERS.ID.eq("kotlin"))
.execute()
// Select
val users = dslContext.selectFrom(USERS).where(USERS.AGE.ge(3)).fetch()
// Delete
dslContext.deleteFrom(USERS)
.where(USERS.ID.eq("kotlin"))
.execute()
クエリ生成のDSLのコード