rdo 0.0.3 → 0.0.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/lib/rdo/version.rb +1 -1
- data/rdo.gemspec +9 -9
- metadata +55 -19
data/lib/rdo/version.rb
CHANGED
data/rdo.gemspec
CHANGED
@@ -17,15 +17,15 @@ Gem::Specification.new do |gem|
|
|
17
17
|
Ruby syntax, while supporting all the functionality you'd expect from a robust
|
18
18
|
database connection library:
|
19
19
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
20
|
+
* __Consistent API__ to connect to various DBMS's
|
21
|
+
* __Type casting__ to Ruby types
|
22
|
+
* __Time zone handling__ (via the DBMS, not via some crazy time logic in Ruby)
|
23
|
+
* __Native bind values__ parameterization of queries, where supported by the DBMS
|
24
|
+
* __Buffered result sets__ (i.e. cursors, to avoid exhausting memory)
|
25
|
+
* Retrieve query info from executed commands (e.g. affected rows)
|
26
|
+
* __Access RETURNING values__ just like any read query
|
27
|
+
* __Native prepared statements__ where supported, emulated where not
|
28
|
+
* Results given using simple __core Ruby data types__
|
29
29
|
|
30
30
|
== RDBMS Support
|
31
31
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rdo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -27,24 +27,60 @@ dependencies:
|
|
27
27
|
- - ! '>='
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: '0'
|
30
|
-
description: !
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
30
|
+
description: ! '== Ruby Data Objects
|
31
|
+
|
32
|
+
|
33
|
+
If you''re building something in Ruby that needs access to a database, you may
|
34
|
+
|
35
|
+
opt to use an ORM like ActiveRecord, DataMapper or Sequel. But if your needs
|
36
|
+
|
37
|
+
don''t fit well with an ORM (maybe you''re even writing an ORM?) then you''ll
|
38
|
+
|
39
|
+
need some other way of talking to your database.
|
40
|
+
|
41
|
+
|
42
|
+
RDO provides a common interface to a number of RDBMS backends, using a clean
|
43
|
+
|
44
|
+
Ruby syntax, while supporting all the functionality you''d expect from a robust
|
45
|
+
|
46
|
+
database connection library:
|
47
|
+
|
48
|
+
|
49
|
+
* __Consistent API__ to connect to various DBMS''s
|
50
|
+
|
51
|
+
* __Type casting__ to Ruby types
|
52
|
+
|
53
|
+
* __Time zone handling__ (via the DBMS, not via some crazy time logic in Ruby)
|
54
|
+
|
55
|
+
* __Native bind values__ parameterization of queries, where supported by the DBMS
|
56
|
+
|
57
|
+
* __Buffered result sets__ (i.e. cursors, to avoid exhausting memory)
|
58
|
+
|
59
|
+
* Retrieve query info from executed commands (e.g. affected rows)
|
60
|
+
|
61
|
+
* __Access RETURNING values__ just like any read query
|
62
|
+
|
63
|
+
* __Native prepared statements__ where supported, emulated where not
|
64
|
+
|
65
|
+
* Results given using simple __core Ruby data types__
|
66
|
+
|
67
|
+
|
68
|
+
== RDBMS Support
|
69
|
+
|
70
|
+
|
71
|
+
Support for each RDBMS is provided in separate gems, so as to minimize the
|
72
|
+
|
73
|
+
installation requirements and to facilitate the maintenace of each driver. Many
|
74
|
+
|
75
|
+
gems are maintained by separate users who work more closely with those RDBMS''s.
|
76
|
+
|
77
|
+
|
78
|
+
Due to the nature of this gem, most of the nitty-gritty code is actually
|
79
|
+
|
80
|
+
written in C.
|
81
|
+
|
82
|
+
|
83
|
+
See the official README for full details.'
|
48
84
|
email:
|
49
85
|
- chris@w3style.co.uk
|
50
86
|
executables: []
|