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

On deploy to vercel I am getting this error and I have mssql on package.json and locally they find ![image](https://user-images.githubusercontent.com/115690025/221169631-e0b07391-78e8-4b9d-9449-48b535732475.png) ![image](https://user-images.githubusercontent.com/115690025/221169883-ca408cce-b93d-42f5-83c5-272c5b121ced.png) ### Software versions * NodeJS: * node-mssql: * SQL...

Hi, I can't write null to a varbinary column, that is allowed to contain null values. ### Expected behaviour: Insert null to a varbinary column works without throwing an error....

When using the following option set connection fails ```const config = { user: "VinVisionAPIUser", password: "VinVisionAPIPassword", //this account will most likely need creating server: SQLServerUrl, database: SQLServerDb, options: { trustServerCertificate:...

I want to fetch the estimated execution plan of a query using the MSSQL package using Nodejs. As per the document https://learn.microsoft.com/en-us/sql/t-sql/statements/set-showplan-xml-transact-sql?view=sql-server-ver16 If I set the SHOWPLAN_XML to ON before...

Right now windows users are stuck with the 'SQL Server Native Client 11.0' driver. Why not let developers choose whether we want the ODBC driver or the Native Client? The...

Hi, I am trying to fetch the records in loops from mssql, ```js ql.connect(config, err => { // ... error checks const request = new sql.Request() request.stream = true //...

Bumps [tedious](https://github.com/tediousjs/tedious) from 16.7.0 to 18.2.0. Release notes Sourced from tedious's releases. v18.2.0 18.2.0 (2024-04-18) Bug Fixes fix bigint validation (#1620) (2b21b12) Features types: Export ConnectionAuthentication and ConnectionOptions (#1615) (d37e167),...

dependencies

Bulk insert operations are not supporting row level locks, I don't see options in IbulkOptions, As a results transactions are experiencing delays and potential deadlocks ### Expected behaviour: Bulk insert...

I am switching from `mssql` (Tedious) to `mssql/msnodesqlv8`, because we need Windows Authentication support in our `Node.js` service. However after switching I run into the following issue. We have a...

I noticed that there's a problem with Persian/Arabic characters when using `.input()`. > [!NOTE] > Both `ی` (Persian) and `ي` (Arabic) represent the ~same character but with different unicodes. In...