You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: graphviz-demo/README.md
+13-16Lines changed: 13 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
An example Java web application based on [Micronaut](https://docs.micronaut.io/) which embeds Oracle's Graph
4
4
Visualization library. The server queries the graph data from an Oracle Database using
5
-
[PGQL](https://pgql-lang.org/).
5
+
SQL.
6
6
7
7
The key source files to look at are
8
8
@@ -14,13 +14,11 @@ The key source files to look at are
14
14
## Pre-requisites
15
15
16
16
1. Oracle JDK 11 (or OpenJDK 11)
17
-
2. A running Oracle Graph Server. Download [from oracle.com](https://www.oracle.com/database/technologies/spatialandgraph/property-graph-features/graph-server-and-client/graph-server-and-client-downloads.html)
18
-
and install [as per documentation](https://docs.oracle.com/en/database/oracle/property-graph/22.4/spgdg/deploying-graph-visualization-application.html).
19
-
3. A running Oracle Database (e.g. [Autonomous Database](https://www.oracle.com/autonomous-database/))
20
-
4. Import the Human Resources dataset and create a PG View by running `./gradlew createHrDatasetAndPgView -Pjdbc_url=<jdbc_url> -Pusername=<username> -Ppassword=<password>`
17
+
2. A running Oracle Database, version 23.4 or newer (e.g. [Autonomous Database](https://www.oracle.com/autonomous-database/))
18
+
3. Import the Human Resources dataset and create a Property Graph by running `./gradlew createHrDatasetAndPropertyGraph -Pjdbc_url=<jdbc_url> -Pusername=<username> -Ppassword=<password>`
21
19
22
20
* Note: The user must have `GRANT CREATE SESSION, CREATE TABLE, CREATE VIEW, CREATE SEQUENCE grants on the Database`
23
-
* Note 2: You can drop the HR dataset and the created PG View by running the following command: `./gradlew dropHrDatasetAndPgView -Pjdbc_url=<jdbc_url> -Pusername=<username> -Ppassword=<password>`
21
+
* Note 2: You can drop the HR dataset and the created Property Graph by running the following command: `./gradlew dropHrDatasetAndPropertyGraph -Pjdbc_url=<jdbc_url> -Pusername=<username> -Ppassword=<password>`
24
22
25
23
## Usage
26
24
@@ -29,31 +27,30 @@ The key source files to look at are
29
27
3. Unzip the library into the `src/main/resources/public` directory. For example:
0 commit comments