Sha256: f34718ed3edc931976513722b11a811f0da5b83baf2b2ac81da2303f73194f6e

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

# jdbc-hsqldb

 HSQLDB (HyperSQL DataBase) is the leading SQL relational database engine written 
 in Java. It offers a small, fast multithreaded and transactional database engine 
 with in-memory and disk-based tables and supports embedded and server modes. 
 It includes a powerful command line SQL tool and simple GUI query tools.

For more information see http://hsqldb.org/

## Usage

To make the driver accessible to JDBC and ActiveRecord code running in JRuby :

    require 'jdbc/hsqldb'
    Jdbc::HSQLDB.load_driver

For backwards compatibility with older (<= **1.8.1.3**) versions of the gem use :

    require 'jdbc/hsqldb'
    Jdbc::HSQLDB.load_driver(:require) if Jdbc::HSQLDB.respond_to?(:load_driver)

## Copyright

Copyright (c) 2012 [The JRuby Team](https://github.com/jruby).

HSQLDB is completely free to use and distribute under a license based on the 
standard BSD license and fully compatible with all major open source licenses.
see *LICENSE.txt* and http://hsqldb.org/web/hsqlLicense.html for more details.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jdbc-hsqldb-2.2.9.1 README.md