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
// Update with positional parameters
UpdateModel uP;
Param mark = "?";
uP.update("user")
.set("name", mark)
("age", mark)
("score", mark)
("address", mark)
.where(column("id").in(a));
assert(uP.str() ==
"update user set name = ?, age = ?, score = ?, address = ? where id in (1, 2, 3)");
可以支持占位符吗
The text was updated successfully, but these errors were encountered: