An open API service indexing awesome lists of open source software.

https://github.com/jsreport/jsreport-mssql-store

Extension allowing to store template in Microsoft SQL Server
https://github.com/jsreport/jsreport-mssql-store

Last synced: 8 months ago
JSON representation

Extension allowing to store template in Microsoft SQL Server

Awesome Lists containing this project

README

          

**⚠️ This repository has been moved to the monorepo [jsreport/jsreport](https://github.com/jsreport/jsreport)**
--

# jsreport-mssql-store
[![NPM Version](http://img.shields.io/npm/v/jsreport-mssql-store.svg?style=flat-square)](https://npmjs.com/package/jsreport-mssql-store)
[![Build Status](https://travis-ci.com/jsreport/jsreport-mssql-store.png?branch=master)](https://travis-ci.org/jsreport/jsreport-mssql-store)

**[jsreport](https://github.com/jsreport/jsreport) template store extension allowing to persist data in [Microsoft SQL Server](https://www.microsoft.com/en/server-cloud/products/sql-server/)**

## Installation

> npm install jsreport-mssql-store

Then alter jsreport configuration
```js
{
"store": {
"provider": "mssql"
},
"extensions": {
"mssql-store": {
"user": "jsreport",
"password": "password",
"server": "janblaha-PC\\SQLEXPRESS",
"database": "jsreport",
"schema": "mycustomschema",
/* required for sql azure */
"options": {
"encrypt": true
}
}
}
}
```

Alternatively you can pass the connection string as uri
```js
"store": {
"provider": "mssql"
},
"extensions": {
"mssql-store": {
"uri": "Server=tcp:jsreport.database.windows.net,1433;Initial Catalog=jsreport;Persist Security Info=False;User ID=myuser;Password=password;MultipleActiveResultSets=False;Encrypt=True;"
}
}
```

**Make sure your TCP/IP protocol is enabled in the SQL Server Configuration Manager and the SQL Browser service is running.**

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.

## jsreport-core
You can apply this extension also manually to [jsreport-core](https://github.com/jsreport/jsreport-core)

```js
var jsreport = require('jsreport-core')()
jsreport.use(require('jsreport-mssql-store')({ server: '...'}))
```