Sha256: cad245fa3417580c93a43196a77bbd1f94292f6cb27fa021b628bc3f29c68c1d

Contents?: true

Size: 803 Bytes

Versions: 6

Compression:

Stored size: 803 Bytes

Contents

# jdbc-postgres

PostgreSQL JDBC driver allows Java programs to connect to a PostgreSQL database
using standard, database independent Java code - it's a pure Java (Type 4) impl.

For more information see http://jdbc.postgresql.org/

## Usage

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

    require 'jdbc/postgres'
    Jdbc::Postgres.load_driver

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

    require 'jdbc/postgres'
    Jdbc::Postgres.load_driver(:require) if Jdbc::Postgres.respond_to?(:load_driver)

## Copyright

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

The PostgreSQL JDBC driver is distributed under the BSD license,
see *LICENSE.txt* and http://jdbc.postgresql.org/license.html for details.

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
jdbc-postgres-42.1.2 README.md
jdbc-postgres-42.0.0 README.md
jdbc-postgres-9.4.1212 README.md
jdbc-postgres-9.4.1210 README.md
jdbc-postgres-9.4.1206 README.md
jdbc-postgres-9.4.1204 README.md