You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val users = listOf(
listOf("Bill", 20),
listOf("Andy", 18)
)
queryOf("INSERT INTO User SET (name, age) VALUES ?", users)
// becomes:
INSERT INTO User SET (name, age) VALUES ("Bill", 20), ("Andy", 18);
The text was updated successfully, but these errors were encountered:
red010182
changed the title
[feature] support batch insert by using list of map
[feature] support batch insert by using list of list
Mar 8, 2023
red010182
changed the title
[feature] support batch insert by using list of list
[feature] support batch insert by using 2D list
Mar 8, 2023
red010182
changed the title
[feature] support batch insert by using 2D list
[feature] support MySQL batch insert by using 2D list
Mar 8, 2023
The text was updated successfully, but these errors were encountered: