Official Microsoft SQL Server adapter for Waterline. Tested on SQL Server 2012 and 2014, but should support any SQL Server 2005 and newer.
$ npm install waterline-mssql --save
{
connection: 'sqlserver'
}
{
sqlserver: {
adapter: 'waterline-mssql',
user: 'cnect',
password: 'pass',
host: 'abc123.database.windows.net' // azure database
database: 'mydb',
options: {
encrypt: true // use this for Azure databases
}
}
}
MIT