Skip to content
This repository was archived by the owner on Jan 18, 2024. It is now read-only.

Commit 5828386

Browse files
committed
Found a matching JDBC driver
1 parent e5ad015 commit 5828386

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@
66

77
The XDEV Application Framework provides an abstraction over database dialects as part of its SqlEngine. This module is the Database Adapter for Oracle 12c which includes the Oracle-specific implementation for database access.
88

9-
## <b>IMPORTANT</b>
10-
*At the time of publishing this code, we couldn't find any maven dependency for a suitable JDBC adapter.
11-
If you want to use this adapter properly, you have to search for a proper dependency or the correct ``.jar``.*
12-
13-
We recommend downloading the official JDBC adapter from [Oracle directly](https://www.oracle.com/database/technologies/jdbc-drivers-12c-downloads.html).
14-
159
## XDEV-IDE
1610
XDEV(-IDE) is a visual Java development environment for fast and easy application development (RAD - Rapid Application Development). XDEV differs from other Java IDEs such as Eclipse or NetBeans, focusing on programming through a far-reaching RAD concept. The IDE's main components are a Swing GUI builder, the XDEV Application Framework, and numerous drag-and-drop tools and wizards with which the functions of the framework can be integrated.
1711

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,12 @@
8989
<artifactId>xapi</artifactId>
9090
<version>6.0.0</version>
9191
</dependency>
92+
93+
<dependency>
94+
<groupId>com.oracle.database.jdbc</groupId>
95+
<artifactId>ojdbc8</artifactId>
96+
<version>12.2.0.1</version>
97+
</dependency>
9298
</dependencies>
9399

94100
<build>

0 commit comments

Comments
 (0)