sqlite3-ruby 0.9.0-mswin32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of sqlite3-ruby might be problematic. Click here for more details.
- data/README +36 -0
- data/doc/faq/faq.html +382 -0
- data/doc/faq/faq.rb +177 -0
- data/doc/faq/faq.yml +426 -0
- data/ext/sqlite3_api/MANIFEST +4 -0
- data/ext/sqlite3_api/extconf.rb +8 -0
- data/ext/sqlite3_api/post-clean.rb +3 -0
- data/ext/sqlite3_api/post-distclean.rb +4 -0
- data/ext/sqlite3_api/sqlite3_api.i +339 -0
- data/lib/sqlite3.rb +33 -0
- data/lib/sqlite3/constants.rb +81 -0
- data/lib/sqlite3/database.rb +720 -0
- data/lib/sqlite3/driver/dl/api.rb +184 -0
- data/lib/sqlite3/driver/dl/driver.rb +334 -0
- data/lib/sqlite3/driver/native/driver.rb +218 -0
- data/lib/sqlite3/errors.rb +84 -0
- data/lib/sqlite3/pragmas.rb +254 -0
- data/lib/sqlite3/resultset.rb +172 -0
- data/lib/sqlite3/statement.rb +218 -0
- data/lib/sqlite3/translator.rb +135 -0
- data/lib/sqlite3/value.rb +89 -0
- data/lib/sqlite3/version.rb +45 -0
- data/lib/sqlite3_api.so +0 -0
- data/test/bm.rb +140 -0
- data/test/driver/dl/tc_driver.rb +322 -0
- data/test/mocks.rb +99 -0
- data/test/native-vs-dl.rb +126 -0
- data/test/tc_database.rb +216 -0
- data/test/tc_integration.rb +838 -0
- data/test/tests.rb +36 -0
- metadata +78 -0
data/test/tests.rb
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
#--
|
2
|
+
# =============================================================================
|
3
|
+
# Copyright (c) 2004, Jamis Buck (jgb3@email.byu.edu)
|
4
|
+
# All rights reserved.
|
5
|
+
#
|
6
|
+
# Redistribution and use in source and binary forms, with or without
|
7
|
+
# modification, are permitted provided that the following conditions are met:
|
8
|
+
#
|
9
|
+
# * Redistributions of source code must retain the above copyright notice,
|
10
|
+
# this list of conditions and the following disclaimer.
|
11
|
+
#
|
12
|
+
# * Redistributions in binary form must reproduce the above copyright
|
13
|
+
# notice, this list of conditions and the following disclaimer in the
|
14
|
+
# documentation and/or other materials provided with the distribution.
|
15
|
+
#
|
16
|
+
# * The names of its contributors may not be used to endorse or promote
|
17
|
+
# products derived from this software without specific prior written
|
18
|
+
# permission.
|
19
|
+
#
|
20
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
21
|
+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
22
|
+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
23
|
+
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
24
|
+
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
25
|
+
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
26
|
+
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
27
|
+
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
28
|
+
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
29
|
+
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
30
|
+
# POSSIBILITY OF SUCH DAMAGE.
|
31
|
+
# =============================================================================
|
32
|
+
#++
|
33
|
+
|
34
|
+
|
35
|
+
Dir.chdir File.dirname( __FILE__ )
|
36
|
+
Dir["**/tc_*.rb"].each { |file| load file }
|
metadata
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.4
|
3
|
+
specification_version: 1
|
4
|
+
name: sqlite3-ruby
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.9.0
|
7
|
+
date: 2005-01-05
|
8
|
+
summary: SQLite3/Ruby is a module to allow Ruby scripts to interface with a SQLite database.
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: jgb3@email.byu.edu
|
12
|
+
homepage: http://sqlite-ruby.rubyforge.org/sqlite3
|
13
|
+
rubyforge_project:
|
14
|
+
description:
|
15
|
+
autorequire: sqlite3
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
-
|
22
|
+
- ">="
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 1.8.0
|
25
|
+
version:
|
26
|
+
platform: mswin32
|
27
|
+
authors:
|
28
|
+
- Jamis Buck
|
29
|
+
files:
|
30
|
+
- doc/faq
|
31
|
+
- doc/faq/faq.html
|
32
|
+
- doc/faq/faq.yml
|
33
|
+
- doc/faq/faq.rb
|
34
|
+
- ext/sqlite3_api
|
35
|
+
- ext/sqlite3_api/post-clean.rb
|
36
|
+
- ext/sqlite3_api/extconf.rb
|
37
|
+
- ext/sqlite3_api/sqlite3_api.i
|
38
|
+
- ext/sqlite3_api/post-distclean.rb
|
39
|
+
- ext/sqlite3_api/MANIFEST
|
40
|
+
- lib/sqlite3.rb
|
41
|
+
- lib/sqlite3_api.so
|
42
|
+
- lib/sqlite3
|
43
|
+
- lib/sqlite3/statement.rb
|
44
|
+
- lib/sqlite3/database.rb
|
45
|
+
- lib/sqlite3/driver
|
46
|
+
- lib/sqlite3/constants.rb
|
47
|
+
- lib/sqlite3/translator.rb
|
48
|
+
- lib/sqlite3/resultset.rb
|
49
|
+
- lib/sqlite3/value.rb
|
50
|
+
- lib/sqlite3/version.rb
|
51
|
+
- lib/sqlite3/pragmas.rb
|
52
|
+
- lib/sqlite3/errors.rb
|
53
|
+
- lib/sqlite3/driver/dl
|
54
|
+
- lib/sqlite3/driver/native
|
55
|
+
- lib/sqlite3/driver/dl/driver.rb
|
56
|
+
- lib/sqlite3/driver/dl/api.rb
|
57
|
+
- lib/sqlite3/driver/native/driver.rb
|
58
|
+
- test/bm.rb
|
59
|
+
- test/mocks.rb
|
60
|
+
- test/tests.rb
|
61
|
+
- test/tc_integration.rb
|
62
|
+
- test/driver
|
63
|
+
- test/native-vs-dl.rb
|
64
|
+
- test/tc_database.rb
|
65
|
+
- test/driver/dl
|
66
|
+
- test/driver/dl/tc_driver.rb
|
67
|
+
- README
|
68
|
+
test_files:
|
69
|
+
- test/tests.rb
|
70
|
+
rdoc_options:
|
71
|
+
- "--main"
|
72
|
+
- README
|
73
|
+
extra_rdoc_files:
|
74
|
+
- README
|
75
|
+
executables: []
|
76
|
+
extensions: []
|
77
|
+
requirements: []
|
78
|
+
dependencies: []
|