-
Notifications
You must be signed in to change notification settings - Fork 92
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
Add support for H2 #929
Comments
@blafond, @DavideD For reference, when I run h2 db in hibernate-reactive, I have summarized the following problems and the progress to solve them.
please note. We expect to support H2 DB quickly. Thank you for making such a good library, I'm using it well. |
Thanks @cj848, we are currently working on it. Not sure at the moment how long is gonna take to support h2 because we often need some additional work to make the Hibernate ORM Dialect works with the Vert.x driver. We might be able have something working (with some limitations) in the next couple of weeks. Anyway, people seems very interested to this feature so we will try to keep it up to date. Cheers |
@DavideD |
MySQL always returns an id of type Long. This commit changes an hack that was affecting all dbs and preventing H2 to read identity id of type Integer or Short
It turns out that I'm not very smart and didn't realize that we were using the wron URL. The current PR looks promising: #1336 |
MySQL always returns an id of type Long. This commit changes an hack that was affecting all dbs and preventing H2 to read identity id of type Integer or Short
MySQL always returns an id of type Long. This commit changes an hack that was affecting all dbs and preventing H2 to read identity id of type Integer or Short
MySQL always returns an id of type Long. This commit changes an hack that was affecting all dbs and preventing H2 to read identity id of type Integer or Short
For testing and examples, it would be nice to have support for an in-memory database like H2.
There is actually an example in the Vert.x SQL Client documentation on how to wrap the H2 JDBC driver around the Vert.x Pool: https://vertx.io/docs/vertx-jdbc-client/java/#_using_the_sql_client_api
The text was updated successfully, but these errors were encountered: