Registry / database / hsqldb

hsqldb

JSON →
library2.7.4javamavenunverified

Lightweight 100% Java SQL database engine for embedded and in-memory use.

<dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.7.4</version> </dependency>
INSTALL
IMPORT
SIG · HSQLDB
H
hsqldb
databasejavav2.7.4
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

JDBCDataSource
org.hsqldb.jdbc.JDBCDataSource

Shows how to create an in-memory HSQLDB connection.

import org.hsqldb.jdbc.JDBCDataSource; import java.sql.Connection; public class HsqlExample { public static void main(String[] args) throws Exception { JDBCDataSource ds = new JDBCDataSource(); ds.setURL("jdbc:hsqldb:mem:testdb"); Connection conn = ds.getConnection(); System.out.println("Connected to HSQLDB"); conn.close(); } }
Debug
Known issues
breakingHSQLDB 2.x has breaking changes from 1.x in SQL syntax and JDBC driver.
fix
Use version 2.x driver and update SQL if migrating from 1.x.
affects: >=2.0.0
Upgrade
Version history
2.7.4latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
8
Resources
hsqldb — mvn dependency:get hsqldb · libregistry