From 48e5fb8d1142a63b02a421b5db84b1051ff4fd7e Mon Sep 17 00:00:00 2001 From: pofider Date: Fri, 16 Apr 2021 20:41:25 +0200 Subject: [PATCH] add oracle store --- _posts/oracle-store.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 _posts/oracle-store.md diff --git a/_posts/oracle-store.md b/_posts/oracle-store.md new file mode 100644 index 0000000..9b7a73f --- /dev/null +++ b/_posts/oracle-store.md @@ -0,0 +1,39 @@ +{{{ + "title": "Oracle store", + "date": "04-16-2021 15:06" +}}} + +**I'm excited to announce jsreport now supports storing report templates in the [Oracle database](https://www.oracle.com/database/).** This was possible only because of the contribution done by [@jorisdebock](https://github.com/jorisdebock). Thank you! + +You can find the documentation [here](https://github.com/jsreport/jsreport-oracle-store), but the installation is pretty much standard to other jsreport template stores. + +Installation... +``` +npm i jsreport-oracle-store +``` +Configuration... +```js +"store": { + "provider": "oracle" +}, +"extensions": { + "oracle-store": { + "user": "system", + "password": "oracle", + "connectString": "localhost:1521/xe", + } +} +``` +The only extra additional step required is to install [oracle instant client](https://www.oracle.com/database/technologies/instant-client/downloads.html) and add it to the `PATH` environment variable. + +For completeness, this is the table of the currently supported [template store](/learn/template-stores) providers. + +| Documentation | Technology | +| ------------- | ---------- | +| [jsreport-fs-store](/learn/fs-store) | file system + Azure Storage + AWS S3 | +| [jsreport-mssql-store](https://github.com/jsreport/jsreport-mssql-store)| Microsoft SQL Server | +| [jsreport-postgres-store](https://github.com/jsreport/jsreport-postgres-store) | PostgreSQL| +| [jsreport-mongodb-store](https://github.com/jsreport/jsreport-mongodb-store) | MongoDB +| [jsreport-oracle-store](https://github.com/jsreport/jsreport-oracle-store) | Oracle + +What's next? We will soon ship jsreport v3 and include also [blob storage](https://jsreport.net/learn/blob-storages) implementation to the oracle store. Actually, every sql based store will by default include the blob storage implementation for the most convenient use. And next? Would you like us to add [mysql](https://www.mysql.com/) store?