https://github.com/enpit/flux_node-oracledb.webservice
Webservice entpoint for the flux_nodeoracledb demo.
https://github.com/enpit/flux_node-oracledb.webservice
Last synced: 12 months ago
JSON representation
Webservice entpoint for the flux_nodeoracledb demo.
- Host: GitHub
- URL: https://github.com/enpit/flux_node-oracledb.webservice
- Owner: enpit
- Created: 2015-10-21T12:57:48.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-21T23:08:28.000Z (over 10 years ago)
- Last Synced: 2025-03-04T14:49:11.382Z (over 1 year ago)
- Language: JavaScript
- Size: 145 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flux_node-oracledb.webservice
This is the webservice entpoint for the flux_nodeoracledb demo.
For more information about this project, please visit the main projects [repository](https://github.com/enpit/flux_node-oracledb).
## Database Hints
You probably want to create a dedicated user for the todo application. This user needs certain rights, so you should grant them using the following script (assuming your user is named *todo*):
```
create user todo identified by todo;
grant create session to todo;
grant create table to todo;
alter user todo quota 50m on system;
```