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
Let's allow JdbcSession#sql accept multiple String values, instead of explicitly using String.join
new JdbcSession(this.source())
.sql(
"CREATE TABLE IF NOT EXISTS foo (",
"id INT NOT NULL AUTO_INCREMENT, ",
"name VARCHAR(50), ",
"PRIMARY KEY (id)",
")"
)
.execute();
The text was updated successfully, but these errors were encountered:
Let's allow
JdbcSession#sql
accept multiple String values, instead of explicitly usingString.join
The text was updated successfully, but these errors were encountered: