marcolopes
marcolopes

Reputation: 9288

H2 database HTTPS connection

I'm using the H2 Database embedded mode to connect to local databases, but, is it possible to open a database file located on a remote server, using HTTPS?

The goal is to use a dropbox file: https://dl.dropbox.com/.../database

Upvotes: 0

Views: 521

Answers (1)

Thomas Mueller
Thomas Mueller

Reputation: 50147

You could implement a HTTP(S) file system, using the file system abstraction layer of H2.

Quite a few implementations are included in H2 (reading from Jar, Zip, in-memory, NIO,...)

Upvotes: 1

Related Questions