node-mssql icon indicating copy to clipboard operation
node-mssql copied to clipboard

Microsoft SQL Server client for Node.js

Results 43 node-mssql issues
Sort by recently updated
recently updated
newest added

Perhaps, I'm misunderstanding how the output method works but here is the code I am using: Executing the following code ``` const fullName = "bob smith" let inserted = await...

### Expected behaviour: Using module `mssql/msnodesqlv8`. When using Windows, creating new connection pool, the driver is **always** defaulted to `SQL Server Native Client 11.0`. Expected to have connections established successfully....

What this does: This modification would allow Windows users to choose their own driver instead of being forced to use the Native Client 11.0. It also makes a slight modification...

What this does: This adds an optional config object that can be passed to `Request`, `Transaction` and `PreparedStatement` objects to provide one-off/per-instance overrides for config settings on the pool. At...

I need a way to set different request timeouts without using multiple connection pools. Tedious has a `setTimeout` function on `Request` that implements this behavior, but there's not a defined...

Hi, Im really at a loss here. Im trying to join two tables and one of the columns is of type geometry so when I get the table I get...

Connection Pool gives ECONNCLOSED error after random number of days. ### Expected behaviour: Expected Pool to be self healing and recover. ### Actual behaviour: My app creates 2 seperate connection...

I noticed that the connection pool is leaving a “dirty” session. Meaning, after putting a connection back to the pool, the next process taking it might find some session values...

Why there's bug between Insert & Select when using useUTC:false ? Condition not using **`useUTC:false`** SQL Server Select ![image](https://user-images.githubusercontent.com/6022114/225541643-d595ef98-5372-4367-916b-17009e62bb02.png) Postman Select ![image](https://user-images.githubusercontent.com/6022114/225541605-4025f17f-a4cf-42c5-8e8e-337167cef25e.png) Condition when **`useUTC:false`** Postman Select ![image](https://user-images.githubusercontent.com/6022114/225542077-996abdab-7a46-4894-bfdd-991cecb04a5c.png) If I...

I am running a continuous process with a single connection pool to a single database. When the database is shutdown (maintenance, technical issue, etc.), the connection pool becomes unusable, even...