Sha256: bf08e69b21ee6e86f6ecf6915327d923c010a3211ce4a176dcace966b9fabc66

Contents?: true

Size: 848 Bytes

Versions: 4

Compression:

Stored size: 848 Bytes

Contents

# jdbc-mysql

MySQL Connector/J is the official JDBC driver for MySQL.

It is a native Java driver that converts JDBC (Java Database Connectivity)
calls into the network protocol used by the MySQL database.

For more see http://dev.mysql.com/doc/connector-j/en/connector-j-overview.html

## Usage

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

    require 'jdbc/mysql'
    Jdbc::MySQL.load_driver

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

    require 'jdbc/mysql'
    Jdbc::MySQL.load_driver(:require) if Jdbc::MySQL.respond_to?(:load_driver)

## Copyright

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

MySQL open source software is provided under the GPL (2.0) License,
see *LICENSE.txt* and http://www.gnu.org/licenses/old-licenses/gpl-2.0.html .

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jdbc-mysql-5.1.39 README.md
jdbc-mysql-5.1.38 README.md
jdbc-mysql-5.1.37 README.md
jdbc-mysql-5.1.36 README.md