4.0.0 • Published 9 months ago

@jsreport/jsreport-oracle-store v4.0.0

Weekly downloads
-
License
-
Repository
github
Last release
9 months ago

@jsreport/jsreport-oracle-store

NPM Version

jsreport template store extension allowing to persist data in Oracle database

Installation

Only version 12 or higher is supported

  1. Install instant client basic: oracle-instant-client

  2. 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
  1. npm install @jsreport/jsreport-oracle-store

  2. 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.

Schema changes

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.

Changelog

4.0.0

  • minimum node.js version is now 18.15.0

3.3.2

  • moved oracledb to optionalDependencies to be able to build docker ARM image correctly
  • revert to the old oracledb thick client

3.3.1

  • moved oracledb to dependencies
  • use new oracledb thin client

3.2.2

  • fix oracle blob storage

3.2.1

  • add support for odata ne operator

3.2.0

  • move oracledb from dependencies to optionalDependencies to be able to run for docker ARM images

3.1.0

Support for complex $filter in count quert. Fix for 3.7.1 profiler

3.0.1

  • add missing blobstorage to jsreport.config.js

3.0.0-beta.1

Adaptations for the v3 APIs

4.0.0

9 months ago

3.3.1

11 months ago

3.2.2

12 months ago

3.3.0

11 months ago

3.3.2

11 months ago

3.2.1

1 year ago

3.2.0

1 year ago

3.1.0

2 years ago

3.0.1

2 years ago

3.0.0

3 years ago

3.0.0-beta.1

3 years ago