-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
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
Batch Insert #264
Comments
Will you accept my contribution in case if this feature have not been implemented yet, or you don't see this functionality in the project? |
@catdog905 we don't have it now, but you are welcome to suggest a solution (and a pull request). It's better to discuss the design first, then do the implementation. |
@yegor256 Hello! I've wrote a piece of code in the merge request mentioned above that tries to add batch inserting functionality. Actually, I don't like the implementation at all, but the architecture of JdbsSession does not allow me to easily add new functionality as it is responsible for too many things. Maybe first JdbcSession class decomposition can be considered? For example, I can split it by purpose: select, insert, batchInsert, update, ... |
Oh, I see there is an issue that mention this problem #61. Will start with it first |
Hello! Could you tell if the library supports batch insert capability like in JDBC Template?
https://stackoverflow.com/questions/9565481/how-to-do-multiple-inserts-in-database-using-spring-jdbc-template-batch
Is there a canonical jcabi-jdbc way to insert multiple rows at once?
The text was updated successfully, but these errors were encountered: