Skip to content

Commit b97aaaa

Browse files
committed
Update README to address changes related to oracle-free
1 parent 0314813 commit b97aaaa

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

NetTopologySuite.IO.Oracle.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
88
.gitignore = .gitignore
99
src\Directory.Build.props = src\Directory.Build.props
1010
.github\workflows\dotnet.yml = .github\workflows\dotnet.yml
11+
README.md = README.md
1112
EndProjectSection
1213
EndProject
1314
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetTopologySuite.IO.Oracle", "src\NetTopologySuite.IO.Oracle\NetTopologySuite.IO.Oracle.csproj", "{8B9632C4-9854-497E-A077-A1B7F358E284}"

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,26 +40,27 @@ oracleParam.Value = oracleUdtGeom;
4040
## Integration tests
4141
### Requirements
4242
In order to perform the tests, a Docker container with an Oracle XE database has to be available.
43-
One that worked for us is [oci-oracle-xe](https://hub.docker.com/r/gvenzl/oracle-xe):
43+
One that worked for us is [oci-oracle-free](https://hub.docker.com/r/gvenzl/oracle-free):
4444
```
45-
docker pull docker pull gvenzl/oracle-xe:latest
45+
docker pull docker pull gvenzl/oracle-free:latest
4646
```
4747

4848
Make sure you bind the correct port when running the image:
4949
```
50-
docker run -d -p 1521:1521 -e ORACLE_PASSWORD=secret gvenzl/oracle-xe
50+
docker run -d -p 1521:1521 -e ORACLE_PASSWORD=secret gvenzl/oracle-free
5151
```
5252

5353
You should be able to connect using the following values:
54+
5455
Property | Value
5556
--- | ---
5657
hostname | localhost
5758
port | 1521
58-
sid | xe
59+
sid | free
5960
username | system
6061
password | oracle
6162

62-
Make sure you change the connectionstring in the test project's App.config to match with whatever test database you want to run the tests against.
63+
Make sure you change the connectionstring in the test project's [App.config](test/NetTopologySuite.IO.Oracle.Test/App.config) to match with whatever test database you want to run the tests against.
6364
The default settings assume the above docker image is running on localhost.
6465

6566
### Performing the tests

0 commit comments

Comments
 (0)