sqlite3 1.4.2 → 1.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ff35addc187325a243e752d17c9f38ac54ea4a5b8a48c4809c4dd91692f1f94d
4
- data.tar.gz: c9c22fc4b4a091197b12ae09c13d199c2fcd5f8c836944bf04f50be919d32f8a
3
+ metadata.gz: 14940fe0b1e0cb9f9d1ea85675d7c31c814418e1dbaa5503d20b7c6979817780
4
+ data.tar.gz: 270770317eb93285810b1b5cb9572467bdf8869a63bc1b4e78b0bfcc54e69a73
5
5
  SHA512:
6
- metadata.gz: 68c1c1233ff73049b7c1ff1e0bbeec883bc90228182bd090564ff4df2b9f37fe92e4e9333a374306ba7fcdd10b0b2f914c4116dff0c34ef5c2e964f9342de986
7
- data.tar.gz: 698263b49e7efa9a3c06220d71e617657fdf31b8e8097a9e2278b5ca3a5fbbb3468b2492fa51670345a3756b4760169d2b79681fac523144166f99253f1e40f3
6
+ metadata.gz: d8fa16a98f024f558784bad14add322bd979c86a159ad51603633311fbcca7da8bbae559465dfef082d2a7867c8de6e56b7e7311cb23e18ab53976f71e89f96d
7
+ data.tar.gz: 82639bbe8d90f333d7f4bc2ca29beb0f235125b868418159d1f8c13d8f62735e3ff8a4edae9e38f963f2e252c8afea615227121f8fc71e5ebcb25968adc0ff7a
@@ -1,4 +1,4 @@
1
- = API Changes
1
+ # API Changes
2
2
 
3
3
  * SQLite3::Database#execute only accepts an array for bind parameters.
4
4
 
@@ -8,7 +8,7 @@
8
8
  sometimes important change in behavior.
9
9
 
10
10
  83882d2208ed189361617d5ab8532a325aaf729d
11
-
11
+
12
12
  * SQLite3::Database#trace now takes either a block or an object that responds
13
13
  to "call". The previous implementation passed around a VALUE that was cast
14
14
  to a void *. This is dangerous because the value could get garbage collected
@@ -30,7 +30,7 @@
30
30
  * test/test_tc_database.rb was removed because we no longer use the Driver
31
31
  design pattern.
32
32
 
33
- = Garbage Collection Strategy
33
+ # Garbage Collection Strategy
34
34
 
35
35
  All statements keep pointers back to their respective database connections.
36
36
  The @connection instance variable on the Statement handle keeps the database
@@ -47,4 +47,3 @@ collected. So, it is possible that a connection and a statement are up for
47
47
  garbage collection. If the database connection were to be free'd before the
48
48
  statement, then boom. Instead we'll be conservative and free unclosed
49
49
  statements when the connection is terminated.
50
-
data/CHANGELOG.md ADDED
@@ -0,0 +1,446 @@
1
+ # sqlite3-ruby Changelog
2
+
3
+ ## 1.5.1 / 2022-09-29
4
+
5
+ ### Dependencies
6
+
7
+ * Vendored sqlite is updated to [v3.39.4](https://sqlite.org/releaselog/3_39_4.html).
8
+
9
+ ### Security
10
+
11
+ The vendored version of sqlite, v3.39.4, should be considered to be a security release. From the release notes:
12
+
13
+ > Version 3.39.4 is a minimal patch against the prior release that addresses issues found since the
14
+ > prior release. In particular, a potential vulnerability in the FTS3 extension has been fixed, so
15
+ > this should be considered a security update.
16
+ >
17
+ > In order to exploit the vulnerability, an attacker must have full SQL access and must be able to
18
+ > construct a corrupt database with over 2GB of FTS3 content. The problem arises from a 32-bit
19
+ > signed integer overflow.
20
+
21
+ For more information please see [GHSA-mgvv-5mxp-xq67](https://github.com/sparklemotion/sqlite3-ruby/security/advisories/GHSA-mgvv-5mxp-xq67).
22
+
23
+
24
+ ## 1.5.0 / 2022-09-08
25
+
26
+ ### Packaging
27
+
28
+ #### Faster, more reliable installation
29
+
30
+ Native (precompiled) gems are available for Ruby 2.6, 2.7, 3.0, and 3.1 on all these platforms:
31
+
32
+ - `aarch64-linux`
33
+ - `arm-linux`
34
+ - `arm64-darwin`
35
+ - `x64-mingw32` and `x64-mingw-ucrt`
36
+ - `x86-linux`
37
+ - `x86_64-darwin`
38
+ - `x86_64-linux`
39
+
40
+ If you are using one of these Ruby versions on one of these platforms, the native gem is the recommended way to install sqlite3-ruby.
41
+
42
+ See [the README](https://github.com/sparklemotion/sqlite3-ruby#native-gems-recommended) for more information.
43
+
44
+
45
+ #### More consistent developer experience
46
+
47
+ Both the native (precompiled) gems and the vanilla "ruby platform" (source) gem include sqlite v3.39.3 by default.
48
+
49
+ Defaulting to a consistent version of sqlite across all systems means that your development environment behaves exactly like your production environment, and you have access to the latest and greatest features of sqlite.
50
+
51
+ You can opt-out of the packaged version of sqlite (and use your system-installed library as in versions < 1.5.0). See [the README](https://github.com/sparklemotion/sqlite3-ruby#avoiding-the-precompiled-native-gem) for more information.
52
+
53
+ [Release notes for this version of sqlite](https://sqlite.org/releaselog/3_39_3.html)
54
+
55
+
56
+ ### Rubies and Platforms
57
+
58
+ * TruffleRuby is supported.
59
+ * Apple Silicon is supported (M1, arm64-darwin).
60
+ * vcpkg system libraries supported. [#332] (Thanks, @MSP-Greg!)
61
+
62
+
63
+ ### Added
64
+
65
+ * `SQLite3::SQLITE_LOADED_VERSION` contains the version string of the sqlite3 library that is dynamically loaded (compare to `SQLite3::SQLITE_VERSION` which is the version at compile-time).
66
+
67
+
68
+ ### Fixed
69
+
70
+ * `SQLite3::Database#load_extensions` now raises a `TypeError` unless a String is passed as the file path. Previously it was possible to pass a non-string and cause a segfault. [#339]
71
+
72
+
73
+ ## 1.4.4 / 2022-06-14
74
+
75
+ ### Fixes
76
+
77
+ * Compilation no longer fails against SQLite3 versions < 3.29.0. This issue was introduced in v1.4.3. [#324] (Thank you, @r6e!)
78
+
79
+
80
+ ## 1.4.3 / 2022-05-25
81
+
82
+ ### Enhancements
83
+
84
+ * Disable non-standard support for double-quoted string literals via the `:strict` option. [#317] (Thank you, @casperisfine!)
85
+ * Column type names are now explicitly downcased on platforms where they may have been in shoutcaps. [#315] (Thank you, @petergoldstein!)
86
+ * Support File or Pathname arguments to `Database.new`. [#283] (Thank you, @yb66!)
87
+ * Support building on MSVC. [#285] (Thank you, @jmarrec!)
88
+
89
+
90
+ ## 1.4.2 / 2019-12-18
91
+
92
+ * Travis: Drop unused setting "sudo: false"
93
+ * The taint mechanism will be deprecated in Ruby 2.7
94
+ * Fix Ruby 2.7 rb_check_safe_obj warnings
95
+ * Update travis config
96
+
97
+
98
+ ## 1.4.1
99
+
100
+ * Don't mandate dl functions for the extention build
101
+ * bumping version
102
+
103
+
104
+ ## 1.4.0
105
+
106
+ ### Enhancements
107
+
108
+ * Better aggregator support
109
+
110
+ ### Bugfixes
111
+
112
+ * Various
113
+
114
+
115
+ ## 1.3.13
116
+
117
+ ### Enhancements
118
+
119
+ * Support SQLite flags when defining functions
120
+ * Add definition for SQLITE_DETERMINISTIC flag
121
+
122
+
123
+ ## 1.3.12
124
+
125
+ ### Bugfixes
126
+
127
+ * OS X install will default to homebrew if available. Fixes #195
128
+
129
+
130
+ ## 1.3.11 / 2015-10-10
131
+
132
+ ### Enhancements
133
+
134
+ * Windows: build against SQLite 3.8.11.1
135
+
136
+ ### Internal
137
+
138
+ * Use rake-compiler-dock to build Windows binaries. Pull #159 [larskanis]
139
+ * Expand Ruby versions being tested for Travis and AppVeyor
140
+
141
+
142
+ ## 1.3.10 / 2014-10-30
143
+
144
+ ### Enhancements
145
+
146
+ * Windows: build against SQLite 3.8.6. Closes #135 [Hubro]
147
+
148
+
149
+ ## 1.3.9 / 2014-02-25
150
+
151
+ ### Bugfixes
152
+
153
+ * Reset exception message. Closes #80
154
+ * Reduce warnings due unused pointers. Closes #89
155
+ * Add BSD-3 license reference to gemspec. Refs #99 and #106
156
+
157
+
158
+ ## 1.3.8 / 2013-08-17
159
+
160
+ ### Enhancements
161
+
162
+ * Windows: build against SQLite 3.7.17
163
+
164
+ ### Bugfixes
165
+
166
+ * Reset exception message. Closes #80
167
+ * Correctly convert BLOB values to Ruby. Closes #65
168
+ * Add MIT license reference to gemspec. Closes #99
169
+ * Remove unused pointer. Closes #89
170
+
171
+ ### Internal
172
+
173
+ * Backport improvements in cross compilation for Windows
174
+ * Use of Minitest for internal tests
175
+ * Use Gemfile (generated by Hoe) to deal with dependencies
176
+ * Cleanup Travis CI
177
+
178
+
179
+ ## 1.3.7 / 2013-01-11
180
+
181
+ ### Bugfixes
182
+
183
+ * Closing a bad statement twice will not segv.
184
+ * Aggregate handlers are initialized on each query. Closes #44
185
+
186
+ ### Internal
187
+
188
+ * Unset environment variables that could affect cross compilation.
189
+
190
+
191
+ ## 1.3.6 / 2012-04-16
192
+
193
+ ### Enhancements
194
+
195
+ * Windows: build against SQLite 3.7.11
196
+ * Added SQLite3::ResultSet#each_hash for fetching each row as a hash.
197
+ * Added SQLite3::ResultSet#next_hash for fetching one row as a hash.
198
+
199
+ ### Bugfixes
200
+
201
+ * Support both UTF-16LE and UTF-16BE encoding modes on PPC. Closes #63
202
+ * Protect parameters to custom functions from being garbage collected too
203
+ soon. Fixes #60. Thanks hirataya!
204
+ * Fix backwards compatibility with 1.2.5 with bind vars and `query` method.
205
+ Fixes #35.
206
+ * Fix double definition error caused by defining sqlite3_int64/uint64.
207
+ * Fix suspicious version regexp.
208
+
209
+ ### Deprecations
210
+
211
+ * ArrayWithTypesAndFields#types is deprecated and the class will be removed
212
+ in version 2.0.0. Please use the `types` method on the ResultSet class
213
+ that created this object.
214
+ * ArrayWithTypesAndFields#fields is deprecated and the class will be removed
215
+ in version 2.0.0. Please use the `columns` method on the ResultSet class
216
+ that created this object.
217
+ * The ArrayWithTypesAndFields class will be removed in 2.0.0
218
+ * The ArrayWithTypes class will be removed in 2.0.0
219
+ * HashWithTypesAndFields#types is deprecated and the class will be removed
220
+ in version 2.0.0. Please use the `types` method on the ResultSet class
221
+ that created this object.
222
+ * HashWithTypesAndFields#fields is deprecated and the class will be removed
223
+ in version 2.0.0. Please use the `columns` method on the ResultSet class
224
+ that created this object.
225
+
226
+
227
+ ## 1.3.5 / 2011-12-03 - ZOMG Holidays are here Edition!
228
+
229
+ ### Enhancements
230
+
231
+ * Windows: build against SQLite 3.7.9
232
+ * Static: enable SQLITE_ENABLE_COLUMN_METADATA
233
+ * Added Statement#clear_bindings! to set bindings back to nil
234
+
235
+ ### Bugfixes
236
+
237
+ * Fixed a segv on Database.new. Fixes #34 (thanks nobu!)
238
+ * Database error is not reset, so don't check it in Statement#reset!
239
+ * Remove conditional around Bignum statement bindings.
240
+ Fixes #52. Fixes #56. Thank you Evgeny Myasishchev.
241
+
242
+ ### Internal
243
+
244
+ * Use proper endianness when testing database connection with UTF-16.
245
+ Fixes #40. Fixes #51
246
+ * Use -fPIC for static compilation when host is x86_64.
247
+
248
+
249
+ ## 1.3.4 / 2011-07-25
250
+
251
+ ### Enhancements
252
+
253
+ * Windows: build against SQLite 3.7.7.1
254
+ * Windows: build static binaries that do not depend on sqlite3.dll be
255
+ installed anymore
256
+
257
+ ### Bugfixes
258
+
259
+ * Backup API is conditionally required so that older libsqlite3 can be used.
260
+ Thanks Hongli Lai.
261
+ * Fixed segmentation fault when nil is passed to SQLite3::Statement.new
262
+ * Fix extconf's hardcoded path that affected installation on certain systems.
263
+
264
+
265
+ ## 1.3.3 / 2010-01-16
266
+
267
+ ### Bugfixes
268
+
269
+ * Abort on installation if sqlite3_backup_init is missing. Fixes #19
270
+ * Gem has been renamed to 'sqlite3'. Please use `gem install sqlite3`
271
+
272
+
273
+ ## 1.3.2 / 2010-10-30 / RubyConf Uruguay Edition!
274
+
275
+ ### Enhancements
276
+
277
+ * Windows: build against 3.7.3 version of SQLite3
278
+ * SQLite3::Database can now be open as readonly
279
+
280
+ db = SQLite3::Database.new('my.db', :readonly => true)
281
+
282
+ * Added SQLite3::SQLITE_VERSION and SQLite3::SQLITE_VERSION_NUMBER [nurse]
283
+
284
+ ### Bugfixes
285
+
286
+ * type_translation= works along with Database#execute and a block
287
+ * defined functions are kept in a hash to prevent GC. #7
288
+ * Removed GCC specific flags from extconf.
289
+
290
+ ### Deprecations
291
+
292
+ * SQLite3::Database#type_translation= will be deprecated in the future with
293
+ no replacement.
294
+ * SQlite3::Version will be deprecated in 2.0.0 with SQLite3::VERSION as the
295
+ replacement.
296
+
297
+
298
+ ## 1.3.1 / 2010-07-09
299
+
300
+ ### Enhancements
301
+
302
+ * Custom collations may be defined using SQLite3::Database#collation
303
+
304
+ ### Bugfixes
305
+
306
+ * Statements returning 0 columns are automatically stepped. [RF #28308]
307
+ * SQLite3::Database#encoding works on 1.8 and 1.9
308
+
309
+
310
+ ## 1.3.0 / 2010-06-06
311
+
312
+ ### Enhancements
313
+
314
+ * Complete rewrite of C-based adapter from SWIG to hand-crafted one [tenderlove]
315
+ See API_CHANGES document for details.
316
+ This closes: Bug #27300, Bug #27241, Patch #16020
317
+ * Improved UTF, Unicode, M17N, all that handling and proper BLOB handling [tenderlove, nurse]
318
+ * Added support for type translations [tenderlove]
319
+
320
+ @db.translator.add_translator('sometime') do |type, thing|
321
+ 'output' # this will be returned as value for that column
322
+ end
323
+
324
+ ### Experimental
325
+
326
+ * Added API to access and load extensions. [kashif]
327
+ These functions maps directly into SQLite3 own enable_load_extension()
328
+ and load_extension() C-API functions. See SQLite3::Database API documentation for details.
329
+ This closes: Patches #9178
330
+
331
+ ### Bugfixes
332
+
333
+ * Corrected gem dependencies (runtime and development)
334
+ * Fixed threaded tests [Alexey Borzenkov]
335
+ * Removed GitHub gemspec
336
+ * Fixed "No definition for" warnings from RDoc
337
+ * Generate zip and tgz files for releases
338
+ * Added Luis Lavena as gem Author (maintainer)
339
+ * Prevent mkmf interfere with Mighty Snow Leopard
340
+ * Allow extension compilation search for common lib paths [kashif]
341
+ (lookup /usr/local, /opt/local and /usr)
342
+ * Corrected extension compilation under MSVC [romuloceccon]
343
+ * Define load_extension functionality based on availability [tenderlove]
344
+ * Deprecation notices for Database#query. Fixes RF #28192
345
+
346
+
347
+ ## 1.3.0.beta.2 / 2010-05-15
348
+
349
+ ### Enhancements
350
+
351
+ * Added support for type translations [tenderlove]
352
+
353
+ @db.translator.add_translator('sometime') do |type, thing|
354
+ 'output' # this will be returned as value for that column
355
+ end
356
+
357
+ ### Bugfixes
358
+
359
+ * Allow extension compilation search for common lib paths [kashif]
360
+ (lookup /usr/local, /opt/local and /usr)
361
+ * Corrected extension compilation under MSVC [romuloceccon]
362
+ * Define load_extension functionality based on availability [tenderlove]
363
+ * Deprecation notices for Database#query. Fixes RF #28192
364
+
365
+
366
+ ## 1.3.0.beta.1 / 2010-05-10
367
+
368
+ ### Enhancements
369
+
370
+ * Complete rewrite of C-based adapter from SWIG to hand-crafted one [tenderlove]
371
+ See API_CHANGES document for details.
372
+ This closes: Bug #27300, Bug #27241, Patch #16020
373
+ * Improved UTF, Unicode, M17N, all that handling and proper BLOB handling [tenderlove, nurse]
374
+
375
+ ### Experimental
376
+
377
+ * Added API to access and load extensions. [kashif]
378
+ These functions maps directly into SQLite3 own enable_load_extension()
379
+ and load_extension() C-API functions. See SQLite3::Database API documentation for details.
380
+ This closes: Patches #9178
381
+
382
+ ### Bugfixes
383
+
384
+ * Corrected gem dependencies (runtime and development)
385
+ * Fixed threaded tests [Alexey Borzenkov]
386
+ * Removed GitHub gemspec
387
+ * Fixed "No definition for" warnings from RDoc
388
+ * Generate zip and tgz files for releases
389
+ * Added Luis Lavena as gem Author (maintainer)
390
+ * Prevent mkmf interfere with Mighty Snow Leopard
391
+
392
+
393
+ ## 1.2.5 / 2009-07-25
394
+
395
+ * Check for illegal nil before executing SQL [Erik Veenstra]
396
+ * Switch to Hoe for gem task management and packaging.
397
+ * Advertise rake-compiler as development dependency.
398
+ * Build gem binaries for Windows.
399
+ * Improved Ruby 1.9 support compatibility.
400
+ * Taint returned values. Patch #20325.
401
+ * Database.open and Database.new now take an optional block [Gerrit Kaiser]
402
+
403
+
404
+ ## 1.2.4.1 (internal) / 2009-07-05
405
+
406
+ * Check for illegal nil before executing SQL [Erik Veenstra]
407
+ * Switch to Hoe for gem task management and packaging.
408
+ * Advertise rake-compiler as development dependency.
409
+ * Build gem binaries for Windows.
410
+ * Improved Ruby 1.9 support compatibility.
411
+
412
+
413
+ ## 1.2.4 / 2008-08-27
414
+
415
+ * Package the updated C file for source builds. [Jamis Buck]
416
+
417
+
418
+ ## 1.2.3 / 2008-08-26
419
+
420
+ * Fix incorrect permissions on database.rb and translator.rb [Various]
421
+ * Avoid using Object#extend for greater speedups [Erik Veenstra]
422
+ * Ruby 1.9 compatibility tweaks for Array#zip [jimmy88@gmail.com]
423
+ * Fix linking against Ruby 1.8.5 [Rob Holland <rob@inversepath.com>]
424
+
425
+
426
+ ## 1.2.2 / 2008-05-31
427
+
428
+ * Make the table_info method adjust the returned default value for the rows
429
+ so that the sqlite3 change in 3.3.8 and greater can be handled
430
+ transparently [Jamis Buck <jamis@37signals.com>]
431
+ * Ruby 1.9 compatibility tweaks [Roman Le Negrate <roman2k@free.fr>]
432
+ * Various performance enhancements [thanks Erik Veenstra]
433
+ * Correct busy_handler documentation [Rob Holland <rob@inversepath.com>]
434
+ * Use int_bind64 on Fixnum values larger than a 32bit C int can take. [Rob Holland <rob@inversepath.com>]
435
+ * Work around a quirk in SQLite's error reporting by calling sqlite3_reset
436
+ to produce a more informative error code upon a failure from
437
+ sqlite3_step. [Rob Holland <rob@inversepath.com>]
438
+ * Various documentation, test, and style tweaks [Rob Holland <rob@inversepath.com>]
439
+ * Be more granular with time/data translation [Rob Holland <rob@inversepath.com>]
440
+ * Use Date directly for parsing rather than going via Time [Rob Holland <rob@inversepath.com>]
441
+ * Check for the rt library and fdatasync so we link against that when
442
+ needed [Rob Holland <rob@inversepath.com>]
443
+ * Rename data structures to avoid collision on win32. based on patch
444
+ by: Luis Lavena [Rob Holland <rob@inversepath.com>]
445
+ * Add test for defaults [Daniel Rodríguez Troitiño]
446
+ * Correctly unquote double-quoted pragma defaults [Łukasz Dargiewicz <lukasz.dargiewicz@gmail.com>]
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,24 @@
1
+ # Contributing to sqlite3-ruby
2
+
3
+ **This document is a work-in-progress.**
4
+
5
+ This doc is a short introduction on how to modify and maintain the sqlite3-ruby gem.
6
+
7
+
8
+ ## Building gems
9
+
10
+ As a prerequisite please make sure you have `docker` correctly installed, so that you're able to cross-compile the native gems.
11
+
12
+ Run `bin/build-gems` which will package gems for all supported platforms, and run some basic sanity tests on those packages using `bin/test-gem-set` and `bin/test-gem-file-contents`.
13
+
14
+
15
+ ## Making a release
16
+
17
+ A quick checklist:
18
+
19
+ - [ ] make sure CI is green!
20
+ - [ ] update `CHANGELOG.md` and `lib/sqlite3/version.rb` including `VersionProxy::{MINOR,TINY}`
21
+ - [ ] create a git tag using a format that matches the pattern `v\d+\.\d+\.\d+`, e.g. `v1.3.13`
22
+ - [ ] run `bin/build-gems` and make sure it completes and all the tests pass
23
+ - [ ] `for g in gems/*.gem ; do gem push $g ; done`
24
+ - [ ] create a release at https://github.com/sparklemotion/sqlite3-ruby/releases and include sha2 checksums
data/Gemfile CHANGED
@@ -1,17 +1,3 @@
1
- # -*- ruby -*-
1
+ source "https://rubygems.org"
2
2
 
3
- # DO NOT EDIT THIS FILE. Instead, edit Rakefile, and run `rake bundler:gemfile`.
4
-
5
- source "https://rubygems.org/"
6
-
7
-
8
- gem "minitest", "~>5.11", :group => [:development, :test]
9
- gem "rake-compiler", "~>1.0", :group => [:development, :test]
10
- gem "rake-compiler-dock", "~>0.6.0", :group => [:development, :test]
11
- gem "mini_portile", "~>0.6.2", :group => [:development, :test]
12
- gem "hoe-bundler", "~>1.0", :group => [:development, :test]
13
- gem "hoe-gemspec", "~>1.0", :group => [:development, :test]
14
- gem "rdoc", ">=4.0", "<6", :group => [:development, :test]
15
- gem "hoe", "~>3.17", :group => [:development, :test]
16
-
17
- # vim: syntax=ruby
3
+ gemspec
@@ -0,0 +1,20 @@
1
+ # Vendored Dependency Licenses
2
+
3
+ The library `sqlite3-ruby` (which lives at https://github.com/sparklemotion/sqlite3-ruby) may include the source code for `sqlite` (which lives at https://www.sqlite.org/)
4
+
5
+ `sqlite` source code is licensed under the public domain:
6
+
7
+ > https://www.sqlite.org/copyright.html
8
+
9
+ The license terms shipped with `sqlite` are included here for your convenience:
10
+
11
+ ```
12
+ The author disclaims copyright to this source code. In place of
13
+ a legal notice, here is a blessing:
14
+
15
+ May you do good and not evil.
16
+ May you find forgiveness for yourself and forgive others.
17
+ May you share freely, never taking more than you give.
18
+ ```
19
+
20
+ Note that these license terms do not apply to the `sqlite3-ruby` library itself.