Configuration
The TileDB Cloud JDBC library can be configured programmatically in your Java code. The configuration options include:
apiKey(String)
: Your TileDB-Cloud API Token. (recommended)username(String)
: Your TileDB-Cloud usernamepassword(String)
: Your TileDB-Cloud passwordrememberMe(boolean)
: Whether the JDBC driver will remeber your login credentials in the future.verifySSL(boolean)
: Whether the JDBC driver will use SSLoverwritePrevious(boolean)
: Whether the JDBC driver will overwrite existing credentials. This option can be combined withrememberMe.
Here's an example of configuring the driver where NAMESPACE
is your TileDB-Cloud namespace
You can also include your API Token in the connection String like this:
Last updated