jdbc-openedge 10.1C → 10.2B
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +4 -4
- data/lib/jdbc/openedge.rb +2 -3
- metadata +1 -1
data/README.md
CHANGED
@@ -1,17 +1,17 @@
|
|
1
|
-
|
1
|
+
# jdbc-openedge
|
2
2
|
|
3
3
|
* https://github.com/abevoelker/jdbc-openedge
|
4
4
|
|
5
|
-
|
5
|
+
## DESCRIPTION:
|
6
6
|
|
7
7
|
This gem abstracts away the `require` statements for loading the Progress
|
8
8
|
DataDirect OpenEdge JDBC client drivers. Unfortunately, the drivers
|
9
9
|
themselves cannot be stored in this gem as they are proprietary. They can
|
10
10
|
normally be found in an OpenEdge installation directory.
|
11
11
|
|
12
|
-
Add the .jar files to your Java
|
12
|
+
Add the .jar files to your Java `$CLASSPATH`, and then use
|
13
13
|
|
14
|
-
|
14
|
+
require 'jdbc/openedge'
|
15
15
|
|
16
16
|
to make the driver accessible to JDBC code running in JRuby.
|
17
17
|
|
data/lib/jdbc/openedge.rb
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
module Jdbc
|
2
2
|
module OpenEdge
|
3
|
-
VERSION = "10.
|
3
|
+
VERSION = "10.2B"
|
4
4
|
end
|
5
5
|
end
|
6
6
|
|
7
7
|
if RUBY_PLATFORM =~ /java/
|
8
|
-
require 'base.jar'
|
9
8
|
require 'openedge.jar'
|
10
|
-
require '
|
9
|
+
require 'pool.jar'
|
11
10
|
elsif $VERBOSE
|
12
11
|
warn "jdbc-OpenEdge is only for use with JRuby!"
|
13
12
|
end
|