jsreport template store extension allowing to persist data in Oracle database
Only version 12 or higher is supported
-
Install instant client basic: oracle-instant-client
-
set environment variables e.g. for 18.5
ORACLE_HOME=/usr/lib/oracle/18.5/client64
PATH=$ORACLE_HOME/bin:$PATH
LD_LIBRARY_PATH=$ORACLE_HOME/lib
-
npm install @jsreport/jsreport-oracle-store
-
Alter jsreport configuration
{
"store": {
"provider": "oracle"
},
"extensions": {
"oracle-store": {
"user": "jsreport",
"password": "password",
"connectionString": "localhost:1521/XEPDB1",
"poolMin": 0,
"poolMax": 20,
"poolIncrement": 1
}
}
}
After jsreport initializes you should see tables like jsreport.TemplateType
and others in jsreport
database.
If you do changes to the database schema by enabling additional extensions you need to drop the affected tables and let jsreport to reinitialize them.
- create store indexes during schema creation
- minimum node.js version is now
18.15.0
- moved oracledb to optionalDependencies to be able to build docker ARM image correctly
- revert to the old oracledb thick client
- moved oracledb to dependencies
- use new oracledb thin client
- fix oracle blob storage
- add support for odata ne operator
- move
oracledb
fromdependencies
tooptionalDependencies
to be able to run for docker ARM images
Support for complex $filter in count quert. Fix for 3.7.1 profiler
- add missing blobstorage to jsreport.config.js
Adaptations for the v3 APIs