tiny_tds 0.4.3 → 0.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +17 -0
- data/CHANGELOG +5 -0
- data/Gemfile +18 -0
- data/NOTES +14 -0
- data/README.rdoc +10 -5
- data/Rakefile +57 -0
- data/ext/tiny_tds/extconf.rb +8 -3
- data/lib/tiny_tds.rb +8 -7
- data/lib/tiny_tds/client.rb +8 -1
- data/lib/tiny_tds/version.rb +3 -0
- data/tasks/ports.rake +59 -0
- data/test/benchmark/query.rb +77 -0
- data/test/benchmark/query_odbc.rb +106 -0
- data/test/benchmark/query_tinytds.rb +111 -0
- data/test/client_test.rb +163 -0
- data/test/result_test.rb +437 -0
- data/test/schema/1px.gif +0 -0
- data/test/schema/sqlserver_2000.sql +138 -0
- data/test/schema/sqlserver_2005.sql +138 -0
- data/test/schema/sqlserver_2008.sql +138 -0
- data/test/schema/sqlserver_azure.sql +138 -0
- data/test/schema_test.rb +284 -0
- data/test/test_helper.rb +199 -0
- metadata +39 -9
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tiny_tds
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 7
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 4
|
9
|
-
-
|
10
|
-
version: 0.4.
|
9
|
+
- 4
|
10
|
+
version: 0.4.4
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Ken Collins
|
@@ -16,12 +16,13 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2011-04-
|
19
|
+
date: 2011-04-11 00:00:00 -04:00
|
20
20
|
default_executable:
|
21
21
|
dependencies: []
|
22
22
|
|
23
23
|
description: TinyTDS - A modern, simple and fast FreeTDS library for Ruby using DB-Library. Developed for the ActiveRecord SQL Server adapter.
|
24
|
-
email:
|
24
|
+
email:
|
25
|
+
- ken@metaskills.net
|
25
26
|
executables: []
|
26
27
|
|
27
28
|
extensions:
|
@@ -29,9 +30,13 @@ extensions:
|
|
29
30
|
extra_rdoc_files: []
|
30
31
|
|
31
32
|
files:
|
33
|
+
- .gitignore
|
32
34
|
- CHANGELOG
|
35
|
+
- Gemfile
|
33
36
|
- MIT-LICENSE
|
37
|
+
- NOTES
|
34
38
|
- README.rdoc
|
39
|
+
- Rakefile
|
35
40
|
- ext/tiny_tds/client.c
|
36
41
|
- ext/tiny_tds/client.h
|
37
42
|
- ext/tiny_tds/extconf.rb
|
@@ -39,10 +44,24 @@ files:
|
|
39
44
|
- ext/tiny_tds/result.h
|
40
45
|
- ext/tiny_tds/tiny_tds_ext.c
|
41
46
|
- ext/tiny_tds/tiny_tds_ext.h
|
47
|
+
- lib/tiny_tds.rb
|
42
48
|
- lib/tiny_tds/client.rb
|
43
49
|
- lib/tiny_tds/error.rb
|
44
50
|
- lib/tiny_tds/result.rb
|
45
|
-
- lib/tiny_tds.rb
|
51
|
+
- lib/tiny_tds/version.rb
|
52
|
+
- tasks/ports.rake
|
53
|
+
- test/benchmark/query.rb
|
54
|
+
- test/benchmark/query_odbc.rb
|
55
|
+
- test/benchmark/query_tinytds.rb
|
56
|
+
- test/client_test.rb
|
57
|
+
- test/result_test.rb
|
58
|
+
- test/schema/1px.gif
|
59
|
+
- test/schema/sqlserver_2000.sql
|
60
|
+
- test/schema/sqlserver_2005.sql
|
61
|
+
- test/schema/sqlserver_2008.sql
|
62
|
+
- test/schema/sqlserver_azure.sql
|
63
|
+
- test/schema_test.rb
|
64
|
+
- test/test_helper.rb
|
46
65
|
has_rdoc: true
|
47
66
|
homepage: http://github.com/rails-sqlserver/tiny_tds
|
48
67
|
licenses: []
|
@@ -73,9 +92,20 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
92
|
requirements: []
|
74
93
|
|
75
94
|
rubyforge_project:
|
76
|
-
rubygems_version: 1.
|
95
|
+
rubygems_version: 1.5.0
|
77
96
|
signing_key:
|
78
97
|
specification_version: 3
|
79
98
|
summary: TinyTDS - A modern, simple and fast FreeTDS library for Ruby using DB-Library.
|
80
|
-
test_files:
|
81
|
-
|
99
|
+
test_files:
|
100
|
+
- test/benchmark/query.rb
|
101
|
+
- test/benchmark/query_odbc.rb
|
102
|
+
- test/benchmark/query_tinytds.rb
|
103
|
+
- test/client_test.rb
|
104
|
+
- test/result_test.rb
|
105
|
+
- test/schema/1px.gif
|
106
|
+
- test/schema/sqlserver_2000.sql
|
107
|
+
- test/schema/sqlserver_2005.sql
|
108
|
+
- test/schema/sqlserver_2008.sql
|
109
|
+
- test/schema/sqlserver_azure.sql
|
110
|
+
- test/schema_test.rb
|
111
|
+
- test/test_helper.rb
|