Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
We tested Joget Workflow v3 with Oracle 10g Express and, generally, it runs fine. However, if you find any issue(s), please feel free to inform the community through forum discussion.
Create a database schema in Oracle with the appropriate permissions; name it jwdb (or another preferred name) e.g.
Code Block | ||
---|---|---|
| ||
CREATE USER jwdb IDENTIFIED BY jwdb;
GRANT connect, resource TO jwdb;
GRANT create session TO jwdb;
GRANT create table TO jwdb; |
...
Code Block | ||
---|---|---|
| ||
workflowUser=jwdb workflowPassword=jwdb workflowDriver=oracle.jdbc.driver.OracleDriver workflowUrl=jdbc\:oracle\:thin\:@hostname\:1521\:XE |
...
You may need to change the datasource URL, database user and database user's password accordingly.
...