We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to insert something like this:
insert into table(id, db_timestamp) values (1, SYSDATETIME()), (2,SYSDATETIME());
Looking at the two rows, they have the same timestamp. When I do the same in code, the timestamps are different:
val insertSql = "insert into table(id, db_timestamp) values(@id, SYSDATETIME())" connection .createStatement(insertSql) .bind("@id", 1).add() .bind("@id", 2).add() .execute()
Is it possible that the code above creates two separate statements, instead of combining them into a single insert with multiples values?
value
Any idea how to achieve this?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to insert something like this:
Looking at the two rows, they have the same timestamp. When I do the same in code, the timestamps are different:
Is it possible that the code above creates two separate statements, instead of combining them into a single insert with multiples
value
s?Any idea how to achieve this?
The text was updated successfully, but these errors were encountered: