copiousfreetime / amalgalite

SQLite database engine embedded in a ruby extension.

This URL has Read+Write access

amalgalite / HISTORY
100644 36 lines (25 sloc) 1.021 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
33
34
35
36
= Changelog
== Version 0.2.2
 
* Bugfixes
  * Database#pragma should accept a block just like Database#execute does
 
* compatibility fix
  * convert to using extconf.rb instead of mkrf for muster integration
 
== Version 0.2.1 - 2008-07-05
 
* Bugfixes
  * make sure that the pthread support in sqlite3 matches that of ruby
  * fix schema reloading in the example scripts
 
== Version 0.2.0 - 2008-07-04
 
* Major Enhancements
  * blob support, both incremental access and normal access
 
* Minor Enhancements
  * added examples/gem_db.rb script demonstrating taps and prepared statements
  * added examples/schema-info.rb script demonstrating meta information
  * added examples/blob.rb demonstrating incremental blob IO
  * added acces to the SQLite3 errcode and errmsg api
  
* Bugfixes
  * added taps.rb for requiring
  * fixed prepared statement reset
  * caught an error in executing prepared statements earlier in the process so
    the correct error is reported
 
== Version 0.1.0 - 2008-06-21
 
* Initial public release