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
Helidon MP persistence documentation lists only H2 and Oracle database drivers.
<dependency> <groupId>io.helidon.integrations.db</groupId> <artifactId>h2</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.helidon.integrations.db</groupId> <artifactId>ojdbc</artifactId> <scope>runtime</scope> </dependency>
This might give the wrong impression that only the above 2 databases are supported whereas the following drivers are also available:
<dependency> <groupId>io.helidon.integrations.db</groupId> <artifactId>helidon-integrations-db-pgsql</artifactId> </dependency> <dependency> <groupId>io.helidon.integrations.db</groupId> <artifactId>helidon-integrations-db-mysql</artifactId> </dependency>
Please add the above two to the documentation for MP.
It's also unclear if the above works for MP only e.g. in the SE documentation, instead of using
<dependency> <groupId>io.helidon.integrations.db</groupId> <artifactId>h2</artifactId> <scope>runtime</scope> </dependency>
for H2 database, the documentation suggests the followingg:
<dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> </dependency>
If the jdbc drivers are already in io.helidon.ingrations.db, why would we need to add com.h2database? Please clarify
io.helidon.ingrations.db
com.h2database
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Environment Details
Enhancement Description
Helidon MP persistence documentation lists only H2 and Oracle database drivers.
This might give the wrong impression that only the above 2 databases are supported whereas the following drivers are also available:
Please add the above two to the documentation for MP.
It's also unclear if the above works for MP only e.g. in the SE documentation, instead of using
for H2 database, the documentation suggests the followingg:
If the jdbc drivers are already in
io.helidon.ingrations.db
, why would we need to addcom.h2database
? Please clarifyThe text was updated successfully, but these errors were encountered: