Sha256: 8322220741d65d09c86d41a1d40ca956680720a57160640b986d5eafa9bf0b4f

Contents?: true

Size: 803 Bytes

Versions: 9

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-2014 [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

9 entries across 9 versions & 1 rubygems

Version Path
jdbc-postgres-42.6.0 README.md
jdbc-postgres-42.2.25 README.md
jdbc-postgres-42.2.14 README.md
jdbc-postgres-42.2.6 README.md
jdbc-postgres-42.2.5 README.md
jdbc-postgres-42.1.4 README.md
jdbc-postgres-9.4.1200 README.md
jdbc-postgres-9.3.1103.1 README.md
jdbc-postgres-9.3.1102 README.md