FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [View Raw Code]   [Original HTTPS Page]

testcontainers-java/docs/modules/databases/questdb.md at main · uhla/testcontainers-java · GitHub

Latest commit

 

History

History
42 lines (27 loc) · 1.03 KB

File metadata and controls

42 lines (27 loc) · 1.03 KB

QuestDB Module

Testcontainers module for QuestDB

Usage example

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.

Testcontainers JDBC URL

jdbc:tc:questdb:6.5.3:///databasename

See JDBC for documentation.

Adding this module to your project dependencies

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