-
Notifications
You must be signed in to change notification settings - Fork 475
Closed
Labels
Milestone
Description
It would be nice in the readme to specify that the function query (of the driver) needs a array of string and not a string.
ex.:
var sql = require('mssql'); sql.connect(settings)
sql.query("select * from table") //does not work
sql.query(["select * from table"]) //works
sql.query `select * from table` //works
EvanCarroll, philippefutureboy and BierDoktor