diff options
| author | Jamis Buck <jamis@37signals.com> | 2007-01-13 21:02:43 +0000 |
|---|---|---|
| committer | Jamis Buck <jamis@37signals.com> | 2007-01-13 21:02:43 +0000 |
| commit | d6c84ceba976741e7a038151967c0587b8f22a16 (patch) | |
| tree | 41956924517e12c6988af0764c92c12077dcdb73 | |
| parent | e24a85880a026bfc968691b02a2e6135dd271800 (diff) | |
| download | third_party-sqlite3-ruby-d6c84ceba976741e7a038151967c0587b8f22a16.tar.gz third_party-sqlite3-ruby-d6c84ceba976741e7a038151967c0587b8f22a16.tar.xz third_party-sqlite3-ruby-d6c84ceba976741e7a038151967c0587b8f22a16.zip | |
Fix another warning (thanks Mike Kasick, debian bug #405612)
| -rw-r--r-- | lib/sqlite3/database.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sqlite3/database.rb b/lib/sqlite3/database.rb index abd1fc8..6a130f9 100644 --- a/lib/sqlite3/database.rb +++ b/lib/sqlite3/database.rb @@ -115,6 +115,7 @@ module SQLite3 @results_as_hash = options.fetch(:results_as_hash,false) @type_translation = options.fetch(:type_translation,false) @translator = nil + @transaction_active = false end # Return +true+ if the string is a valid (ie, parsable) SQL statement, and |
