An enhanced mysql driver with an async interface, threaded access support, and encoding awareness for Ruby 1.9
Go to file
2008-08-28 17:10:04 -06:00
ext add in ability to make queries on 1.9 absolutely simultaneously--currently broken, however--feel free to help out--currently the master branch is faster 2008-08-28 17:10:04 -06:00
lib store references to IO objects to prevent "Bad file descriptor - (Errno::EBADF)" 2008-08-27 16:11:58 -07:00
test clean up threaded test; add simple sequel test 2008-08-27 16:11:19 -07:00
mysqlplus.gemspec threaded access suppor (working this time) 2008-08-27 15:09:39 +03:00
README add tomita masahiro to the credits, one more OS X build example 2008-08-28 10:32:41 -06:00

== MySQLPlus

An enhanced MySQL database driver. With support for async operations and threaded database access.

== Building

  gem build mysqlplus.gemspec

  on OSX with the default mysql installed:

    sudo gem install mysqlplus-0.1.0.gem -- --with-mysql-config=/usr/local/mysql/bin/mysql_config

  on OSX, with mysql installed by macports:

    sudo gem install mysqlplus-0.1.0.gem -- --with-mysql-config=/opt/local/lib/mysql5/bin/mysql_config

  on OSX, with x86 mysql (NOT x86_64!) installed from mysql.com:

    sudo env ARCHFLAGS="-arch i386" gem install mysqlplus-0.1.0.gem -- \
      --with-mysql-dir=/usr/local/mysql \
      --with-mysql-lib=/usr/local/mysql/lib \
      --with-mysql-include=/usr/local/mysql/include

=== Credits

Aman Gupta, for help in threading support and improved tests
Tomita Masahiro--since this is a fork of his already excellent mysql lib [http://www.tmtm.org/en/mysql/ruby].
Roger Pack, for helping in the file descriptor hunt :)

=== License
Ruby License, http://www.ruby-lang.org/en/LICENSE.txt.