sails-mssql-server
v0.10.10
Published
Fork Of Official SQL Server Adapter for Sails / Waterline
Downloads
7
Maintainers
Readme
All-in-One Data Management Stack
sails-sqlserver
Official Microsoft SQL Server adapter for sails.js. Tested on SQL Server 2012 and 2014, but should support any SQL Server 2005 and newer. CI tests are run against SQL Server Express. Published by c*nect.
1. Install
$ npm install sails-sqlserver --save
2. Configure
config/models.js
{
connection: 'sqlserver'
}
config/connections.js
{
sqlserver: {
adapter: 'sails-sqlserver',
user: 'cnect',
password: 'pass',
host: 'abc123.database.windows.net' // azure database
database: 'mydb',
options: {
encrypt: true // use this for Azure databases
}
}
}
License
MIT