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

Commit bf7607b

Browse files
authored
Merge pull request #5 from xdev-software/develop
Release
2 parents 28cd8aa + 0bbd53a commit bf7607b

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
## 1.0.0
2+
Initial release

README.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,14 @@
1-
[![Latest version](https://img.shields.io/maven-central/v/com.xdev-software/xapi-db-ingres)](https://mvnrepository.com/artifact/com.xdev-software/xapi-db-ingres)
2-
[![Build](https://img.shields.io/github/actions/workflow/status/xdev-software/xapi-db-ingres/checkBuild.yml?branch=develop)](https://github.com/xdev-software/xapi-db-ingres/actions/workflows/checkBuild.yml?query=branch%3Adevelop)
3-
[![javadoc](https://javadoc.io/badge2/com.xdev-software/xapi-db-ingres/javadoc.svg)](https://javadoc.io/doc/com.xdev-software/xapi-db-ingres)
4-
51
# SqlEngine Database Adapter Ingres
62

73
The XDEV Application Framework provides an abstraction over database dialects as part of its SqlEngine. This module is
84
the Database Adapter for Ingres which includes the Ingres-specific implementation for database access.
95

10-
## Important Note
6+
### :information_source: Important Notes
117

12-
We once wrote this Database Adapter for Ingres 4.0.7. Apparently, the oldest version of
13-
this [driver for maven is 9.1-3.2.4](https://mvnrepository.com/artifact/com.ingres.jdbc/iijdbc/9.1-3.2.4). But this is
14-
not compatible with our code.
15-
You therefore, have to integrate your own 4.0.7 driver manually without maven.
8+
We once wrote this Database Adapter for Ingres 4.0.7. As the original JDBC driver is not available on Maven we are using a newer driver which makes the code compileable. This driver might not be compatible with your version of Ingres, so you have to check that before using it!
169

1710
Furthermore, this Adapter is not able to write to the Database. Only reading is available. <br>
18-
The Following actions are not supported:
11+
The following actions are not supported:
1912

2013
- createTable
2114
- addColumn

pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,11 @@
9494
<artifactId>xapi</artifactId>
9595
<version>${xdev.xapi.version}</version>
9696
</dependency>
97+
<dependency>
98+
<groupId>com.ingres.jdbc</groupId>
99+
<artifactId>iijdbc</artifactId>
100+
<version>10.2-4.1.10</version>
101+
</dependency>
97102
</dependencies>
98103

99104
<build>
@@ -130,7 +135,7 @@
130135
<plugin>
131136
<groupId>org.apache.maven.plugins</groupId>
132137
<artifactId>maven-compiler-plugin</artifactId>
133-
<version>3.10.1</version>
138+
<version>3.11.0</version>
134139
<configuration>
135140
<source>${maven.compiler.source}</source>
136141
<target>${maven.compiler.target}</target>
@@ -142,7 +147,7 @@
142147
<plugin>
143148
<groupId>org.apache.maven.plugins</groupId>
144149
<artifactId>maven-javadoc-plugin</artifactId>
145-
<version>3.4.1</version>
150+
<version>3.5.0</version>
146151
<executions>
147152
<execution>
148153
<id>attach-javadocs</id>

0 commit comments

Comments
 (0)