public
Fork of oldmoe/mysqlplus
Description: An enhanced mysql driver with an async interface and threaded access support
Homepage:
Clone URL: git://github.com/espace/mysqlplus.git
mysqlplus / README
100644 32 lines (19 sloc) 1.003 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
== 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
 
  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.