activerecord-odbc-adapter-openedge 2.3.4 → 2.3.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/active_record/vendor/odbcext_pervasive.rb +49 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3022e999beed479c83ea459be7065f04b11ed196
|
4
|
+
data.tar.gz: e21131a8e55341a439825225fce3bbc5e1b4387a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ed47c29afccf08e4c86e4bd9d05de27b846538fc6acec67f0ad8c529409570ad1f11c6c13c8cb525df23263c27398f297e88cd2e3ace938497fbb513d2a1e78
|
7
|
+
data.tar.gz: aef05f526e422bbe5824d08fcf3b053b193416142725a3079ba454f634568057c3fb09e4c100e172adbe1c4c8dc7e95b3db09b5cd376968b5f66bff5e6dd5d55
|
@@ -0,0 +1,49 @@
|
|
1
|
+
#
|
2
|
+
# $Id: odbcext_progress.rb,v 1.3 2008/04/13 22:46:09 source Exp $
|
3
|
+
#
|
4
|
+
# OpenLink ODBC Adapter for Ruby on Rails
|
5
|
+
# Extension module for Progress v9 and later using SQL-92 engine
|
6
|
+
# Copyright (C) 2006 OpenLink Software
|
7
|
+
#
|
8
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
9
|
+
# a copy of this software and associated documentation files (the
|
10
|
+
# "Software"), to deal in the Software without restriction, including
|
11
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
12
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
13
|
+
# permit persons to whom the Software is furnished to do so, subject
|
14
|
+
# to the following conditions:
|
15
|
+
#
|
16
|
+
# The above copyright notice and this permission notice shall be
|
17
|
+
# included in all copies or substantial portions of the Software.
|
18
|
+
#
|
19
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
20
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
21
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
22
|
+
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
23
|
+
# ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
24
|
+
# CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
25
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
26
|
+
#
|
27
|
+
|
28
|
+
module ODBCExt
|
29
|
+
|
30
|
+
# ------------------------------------------------------------------------
|
31
|
+
# Mandatory methods
|
32
|
+
#
|
33
|
+
|
34
|
+
# #last_insert_id must be implemented for any database which returns
|
35
|
+
# false from #prefetch_primary_key?
|
36
|
+
# (This adapter returns true for Progress)
|
37
|
+
#def last_insert_id(table, sequence_name, stmt = nil)
|
38
|
+
#end
|
39
|
+
|
40
|
+
# #next_sequence_value must be implemented for any database which returns
|
41
|
+
# true from #prefetch_primary_key?
|
42
|
+
#
|
43
|
+
# Returns the next sequence value from a sequence generator. Not generally
|
44
|
+
# called directly; used by ActiveRecord to get the next primary key value
|
45
|
+
# when inserting a new database record (see #prefetch_primary_key?).
|
46
|
+
|
47
|
+
# currently I implemented nothing for this, I use the advantage database
|
48
|
+
# for pretty simple queries and only to fetch
|
49
|
+
end # module
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord-odbc-adapter-openedge
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Carl Blakeley
|
@@ -32,6 +32,7 @@ files:
|
|
32
32
|
- lib/active_record/vendor/odbcext_mysql.rb
|
33
33
|
- lib/active_record/vendor/odbcext_db2.rb
|
34
34
|
- lib/active_record/vendor/odbcext_advantage.rb
|
35
|
+
- lib/active_record/vendor/odbcext_pervasive.rb
|
35
36
|
- lib/active_record/vendor/odbcext_progress.rb
|
36
37
|
- lib/active_record/vendor/odbcext_microsoftsqlserver.rb
|
37
38
|
- lib/active_record/vendor/odbcext_ingres.rb
|