不要怂,就是干,撸起袖子干!

Commit 16922368 by Chris White

Add MSSQL to usage doc

1 parent f44ff32f
Showing with 10 additions and 0 deletions
...@@ -213,6 +213,16 @@ var sequelize = new Sequelize('database', 'username', 'password', { ...@@ -213,6 +213,16 @@ var sequelize = new Sequelize('database', 'username', 'password', {
}) })
``` ```
### MSSQL
The library for MSSQL is`tedious@^1.7.0` You'll just need to define the dialect:
```js
var sequelize = new Sequelize('database', 'username', 'password', {
dialect: 'mssql'
})
```
## Executing raw SQL queries ## Executing raw SQL queries
As there are often use cases in which it is just easier to execute raw / already prepared SQL queries, you can utilize the function`sequelize.query`. As there are often use cases in which it is just easier to execute raw / already prepared SQL queries, you can utilize the function`sequelize.query`.
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!