4.0.0 • Published 9 months ago

@jsreport/jsreport-postgres-store v4.0.0

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

@jsreport/jsreport-postgres-store

NPM Version

jsreport template store extension allowing to persist data in PostgreSQL database

Installation

npm install @jsreport/jsreport-postgres-store

Then alter jsreport configuration

{
	"store": {
		"provider": "postgres"
	},
	"extensions": {
		"postgres-store": {
			"host": "localhost",
			"port": 5433,
			"database": "jsreport",
			"user": "postgres",
			"password": "password",
			// optionaly enable ssl
			"ssl": true,
			// optionally customize ssl
			// https://node-postgres.com/features/ssl
			"ssl": { ... }
		}
	}
}

After jsreport initializes you should see tables like jsreport.TemplateType and other 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.1.1

  • add support for odata ne operator

3.1.0

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

3.0.0-beta.1

  • Adaptations for the v3 APIs