J
Jamis Buck
Here it is, at last. Bright, shiny. I think I'm going to cry.
SQLite3/Ruby 1.0.0 is ready for public consumption. This release
doesn't really change very much from the 0.9 release:
* /usr/local installations of sqlite3 are now detected by default.
* Various BSDs are now supported by the DL version of the driver.
* Bind parameters are flattened before use, allowing both of the
following syntaxes:
db.execute( "...", 1, 2, 3 )
db.execute( "...", [1, 2, 3] )
A few very minor bugs have been fixed as well.
The most exciting part of this release (to me) is the
brand-spanking-new user manual:
http://docs.jamisbuck.org/read/book/3
Many, many thanks to Tobias Luetke for the excellent Hieraki software!
- Jamis
SQLite3/Ruby 1.0.0 is ready for public consumption. This release
doesn't really change very much from the 0.9 release:
* /usr/local installations of sqlite3 are now detected by default.
* Various BSDs are now supported by the DL version of the driver.
* Bind parameters are flattened before use, allowing both of the
following syntaxes:
db.execute( "...", 1, 2, 3 )
db.execute( "...", [1, 2, 3] )
A few very minor bugs have been fixed as well.
The most exciting part of this release (to me) is the
brand-spanking-new user manual:
http://docs.jamisbuck.org/read/book/3
Many, many thanks to Tobias Luetke for the excellent Hieraki software!
- Jamis