Most Web Framework MSSQL Adapter
npm install @themost/mssql
Register MSSQL adapter on app.json as follows:
"adapterTypes": [
...
{ "name":"MSSQL Data Adapter", "invariantName": "mssql", "type":"@themost/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.
themost-mssql
is a sub-module of Most Web Framework data adapters project
So, checkout parent project
git checkout (https://github.com/themost-framework/themost-adapters.git