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

Pure JS implementation of TDS protocol for Microsoft SQL Server

Results 23 node-tds issues
Sort by recently updated
recently updated
newest added

BufferStream.prototype.assertBytesAvailable = function(amountNeeded) { if (amountNeeded + this._offset > this._buffer.length) { console.log('Need %d, length %d', amountNeeded + this._offset, this._buffer.length); throw new BufferStream.StreamIndexOutOfBoundsError('Index out of bounds'); } }; For example: create...

TypeError: Object # has no method '_handleTokenStream' at TdsClient. (C:\Program Files\nodejs\node_modules\tds\lib\tds-c lient.js:167:19)

Hi! I am migrationBot Did you know that `path.{exists,existsSync}` was moved to `fs.{exists,existsSync}`, and that `tty.setRawMode(mode)` was moved to `tty.ReadStream#setRawMode()` (i.e. `process.stdin.setRawMode()`) in node v0.8.0? Read more @[API changes between...

I assume a nullable column with a value's length of 0xFFFF should actually become null (see #33). The length is set based on emptyPossible so that is does not break...

The bitwise operator needs parentheses in order to return the proper value. Without it it will always return 0.

I am using below code: ``` var tds = require('tds'); var MSsqlSettng= { userName: 'sa', password: '1234', server: '127.0.0.1',//localhost\\sqlexpress // You can use 'localhost\\instance' to connect to named instance database:...

hello i am new to node and connecting mssql, i follow the site http://cretz.github.com/node-tds instruction, but it is not work and give error below Received error { [Error: connect ECONNREFUSED]...

I'm trying to use LIKE with WHERE, but I've not gotten it to work so far. My code is something like - var term = req.query["term"]; queryStr = 'DECLARE @Param1...

I realise if my results return have too much rows, eg 30, the program will hang. When I stepped into the node-tds code, I realised it was cos it hit...

I tried connecting to SQL 2008 without success. Is this supported? The instance is a SQL Azure instance that supports TDS v7.3 A or B. This is my code: ```...