0.1.16 • Published 7 years ago

most-data-mssql v0.1.16

Weekly downloads
2
License
BSD-3-Clause
Repository
github
Last release
7 years ago

most-data-mssql

Most Web Framework MSSQL Adapter

Install

$ npm install most-data-mssql

Usage

Register MSSQL adapter on app.json as follows:

"adapterTypes": [
    ...
    { "name":"MSSQL Data Adapter", "invariantName": "mssql", "type":"most-data-mssql" }
    ...
],
adapters: [
    ...
    { "name":"development", "invariantName":"mssql", "default":true,
        "options": {
          "server":"localhost",
          "user":"user",
          "password":"password",
          "database":"test"
        }
    }
    ...
]

If you are intended to use MSSQL data adapter as the default database adapter set the property "default" to true.

Connect to Azure SQL Databases

If you are going to use adapter against Azure SQL databases you must always enable encrypt option in your connection settings:

adapters: [
    ...
    { "name":"development", "invariantName":"mssql", "default":true,
        "options": {
          "server":"localhost",
          "user":"user",
          "password":"password",
          "database":"test",
          "options": {
                "encrypt": true
          }
        }
    }
    ...
]
0.1.16

7 years ago

0.1.15

7 years ago

0.1.14

8 years ago

0.1.13

8 years ago

0.1.12

8 years ago

0.1.11

8 years ago

0.1.10

8 years ago

0.1.9

8 years ago

0.1.8

8 years ago

0.1.7

9 years ago

0.1.6

9 years ago

0.1.5

9 years ago

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago