| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [View Raw Code] [Original HTTPS Page] |
Testcontainers module for QuestDB
You can start a QuestDB container instance from any Java application by using:
Container creation inside_block:container
See Database containers for documentation and usage that is common to all relational database container types.
jdbc:tc:questdb:6.5.3:///databasename
See JDBC for documentation.
Add the following dependency to your pom.xml/build.gradle file:
=== "Gradle"
testImplementation "org.testcontainers:testcontainers-questdb:{{latest_version}}"=== "Maven"
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-questdb</artifactId>
<version>{{latest_version}}</version>
<scope>test</scope>
</dependency>| Back | FazBrowse Home | New Git URL |