File tree 10 files changed +15
-19
lines changed
java/com/github/marschall/storedprocedureproxy/configuration
10 files changed +15
-19
lines changed Original file line number Diff line number Diff line change 56
56
<dependency >
57
57
<groupId >com.oracle.database.jdbc</groupId >
58
58
<artifactId >ojdbc-bom</artifactId >
59
- <version >21.10 .0.0</version >
59
+ <version >23.2 .0.0</version >
60
60
<type >pom</type >
61
61
<scope >import</scope >
62
62
</dependency >
149
149
<dependency >
150
150
<groupId >org.mockito</groupId >
151
151
<artifactId >mockito-core</artifactId >
152
- <version >5.4 .0</version >
152
+ <version >5.5 .0</version >
153
153
<scope >test</scope >
154
- <exclusions >
155
- <exclusion >
156
- <groupId >net.bytebuddy</groupId >
157
- <artifactId >byte-buddy-agent</artifactId >
158
- </exclusion >
159
- </exclusions >
160
154
</dependency >
161
155
<dependency >
162
156
<groupId >org.postgresql</groupId >
184
178
<dependency >
185
179
<groupId >org.mariadb.jdbc</groupId >
186
180
<artifactId >mariadb-java-client</artifactId >
187
- <version >3.1.4 </version >
181
+ <version >3.2.0 </version >
188
182
<scope >test</scope >
189
183
</dependency >
190
184
<dependency >
Original file line number Diff line number Diff line change 8
8
import org .springframework .context .annotation .Configuration ;
9
9
import org .springframework .jdbc .datasource .SingleConnectionDataSource ;
10
10
11
+ import oracle .jdbc .OracleConnection ;
12
+
11
13
@ Configuration
12
14
public class OracleConfiguration {
13
15
@@ -16,11 +18,11 @@ public DataSource dataSource() {
16
18
oracle .jdbc .OracleDriver .isDebug ();
17
19
SingleConnectionDataSource dataSource = new SingleConnectionDataSource ();
18
20
dataSource .setSuppressClose (true );
19
- dataSource .setUrl ("jdbc:oracle:thin:@localhost:1521/ORCLPDB1 " );
21
+ dataSource .setUrl ("jdbc:oracle:thin:@localhost:1521/FREEPDB1 " );
20
22
dataSource .setUsername ("jdbc" );
21
23
dataSource .setPassword ("Cent-Quick-Space-Bath-8" );
22
24
Properties connectionProperties = new Properties ();
23
- connectionProperties .setProperty ("oracle.net.disableOob" , "true" );
25
+ connectionProperties .setProperty (OracleConnection . CONNECTION_PROPERTY_THIN_NET_DISABLE_OUT_OF_BAND_BREAK , "true" );
24
26
dataSource .setConnectionProperties (connectionProperties );
25
27
return dataSource ;
26
28
}
Original file line number Diff line number Diff line change 1
1
2
- ALTER SESSION SET CONTAINER = ORCLPDB1 ;
2
+ ALTER SESSION SET CONTAINER = FREEPDB1 ;
3
3
4
4
CREATE USER jdbc IDENTIFIED BY " Cent-Quick-Space-Bath-8" ;
Original file line number Diff line number Diff line change 1
1
2
- ALTER SESSION SET CONTAINER = ORCLPDB1 ;
2
+ ALTER SESSION SET CONTAINER = FREEPDB1 ;
3
3
4
4
GRANT CONNECT TO jdbc CONTAINER= CURRENT;
5
5
GRANT CREATE SESSION TO jdbc CONTAINER= CURRENT;
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ docker run --name jdbc-firebird \
9
9
-e ' FIREBIRD_PASSWORD=Cent-Quick-Space-Bath-8' \
10
10
-p 3050:3050 \
11
11
--mount type=tmpfs,destination=/firebird/data \
12
- -d jacobalberty/firebird:v4.0.0
12
+ -d jacobalberty/firebird:v4.0.1
Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ docker run --name jdbc-mariadb \
10
10
-p 3307:3306 \
11
11
--mount type=tmpfs,destination=/var/lib/mysql \
12
12
-v ${DIRECTORY} /mariadb:/docker-entrypoint-initdb.d \
13
- -d mariadb:10.6.5
13
+ -d mariadb:11.0.3
Original file line number Diff line number Diff line change @@ -10,5 +10,5 @@ docker run --name jdbc-mysql \
10
10
-e MYSQL_DATABASE=$USER \
11
11
-p 3306:3306 \
12
12
--mount type=tmpfs,destination=/var/lib/mysql \
13
- -d mysql:8.0.27 \
13
+ -d mysql:8.1.0 \
14
14
--log-bin-trust-function-creators=1
Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ docker run --name jdbc-oracle \
7
7
-p 1521:1521 -p 5500:5500 \
8
8
--shm-size=1g \
9
9
-v ${DIRECTORY} /oracle:/docker-entrypoint-initdb.d/setup \
10
- -d oracle/database:19.3 .0-se2
10
+ -d oracle/database:23.2 .0-free
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ docker run --name jdbc-postgres \
5
5
-e POSTGRES_USER=$USER \
6
6
-p 5432:5432 \
7
7
--mount type=tmpfs,destination=/var/lib/postgresql/data \
8
- -d postgres:14.1 -alpine
8
+ -d postgres:15.4 -alpine
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ docker run --name jdbc-sqlserver \
6
6
-e ' ACCEPT_EULA=Y' \
7
7
-e ' SA_PASSWORD=Cent-Quick-Space-Bath-8' \
8
8
-p 1433:1433 \
9
- -d mcr.microsoft.com/mssql/server:2019 -latest
9
+ -d mcr.microsoft.com/mssql/server:2022 -latest
You can’t perform that action at this time.
0 commit comments