activerecord-odbc-adapter-openedge 2.3.1 → 2.3.2
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_advantage.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: 41dc0e1ae75fcd15c6816195806150bd84a427a4
|
4
|
+
data.tar.gz: a6c24199d011609c36660779fd985334d0a41947
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c1b0d4f9e758b97ca3073afa2c0705157ac7e43b47aab16cf18d1cc096b5b5e1db95b7680e9f96d665d969fff1e7a272c395ca0e89e3a1b8da04ca9e352e547
|
7
|
+
data.tar.gz: a3adb050a3e1bba42a5c501662fa7478720537f72f674cc2cc0ef55b042f27d51eb8adb81643a405b319d50dc7ef2bb46f9e635c6cc309626db7e0a2e10fb3ee
|
@@ -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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Carl Blakeley
|
@@ -31,6 +31,7 @@ files:
|
|
31
31
|
- lib/active_record/vendor/odbcext_sybase_col.rb
|
32
32
|
- lib/active_record/vendor/odbcext_mysql.rb
|
33
33
|
- lib/active_record/vendor/odbcext_db2.rb
|
34
|
+
- lib/active_record/vendor/odbcext_advantage.rb
|
34
35
|
- lib/active_record/vendor/odbcext_progress.rb
|
35
36
|
- lib/active_record/vendor/odbcext_microsoftsqlserver.rb
|
36
37
|
- lib/active_record/vendor/odbcext_ingres.rb
|