tedious

Node TDS module for connecting to SQL Server databases.

MIT License

Downloads
7.7M
Stars
1.6K
Committers
96

Bot releases are visible (Hide)

tedious - 0.3.0

Published by arthurschreiber about 9 years ago

  • #156 Added support for default connection isolation level (Bryan J. Ross)
  • Added support for returning camel cased columns (Bryan J. Ross)
  • Added support for building lib on Windows (Bryan J. Ross)
tedious - 1.0.0

Published by arthurschreiber about 9 years ago

  • Start of semantic versioning, and commitment to stable API until v2.0.0.
tedious - 1.2.0

Published by arthurschreiber about 9 years ago

  • #166 Changed default behavior for logins. Connections will no longer fall back to the user's default database if the requested database is unavailable and instead will produce an error

    Also added fallbackToDefaultDb option to re-enable previous behavior (Bryan J. Ross)

tedious - 1.2.1

Published by arthurschreiber about 9 years ago

tedious - 1.2.2

Published by arthurschreiber about 9 years ago

  • #170 Fixed a bug with bigint serialization. (Bret Copeland)
tedious - 1.3.0

Published by arthurschreiber about 9 years ago

  • eb8ae04 Added experimental support for Bulk Insert. (Bret Copeland)
tedious - 1.3.1

Published by arthurschreiber about 9 years ago

  • c4fd65f API change to Bulk Insert. Still experimental and subject to change. (Bret Copeland)
tedious - 1.3.2

Published by arthurschreiber about 9 years ago

  • #172 Added ability for tracking buffer to grow exponentially. Bulk Load now uses this (Aurélien Gasser)
tedious - 1.3.3

Published by arthurschreiber about 9 years ago

  • #173 BulkLoad can generate table creation SQL - useful for temporary tables. (Aurélien Gasser)
tedious - 1.3.4

Published by arthurschreiber about 9 years ago

  • Added guard against adding columns to BulkLoad after rows have been written. (Bret Copeland)
tedious - 1.3.5

Published by arthurschreiber about 9 years ago

  • Fixed a bug that caused CREATE FUNCTION statements to throw an error. (Bryan Ross)
tedious - 1.4.0

Published by arthurschreiber about 9 years ago

  • BulkLoad API is stable and documented. Report bugs on the issue tracker. (Bret Copeland)
tedious - 1.4.1

Published by arthurschreiber about 9 years ago

  • #176 Fixed an ignored error when the bulk load schema doesn't match the insert table schema. (Bret Copeland, Patrik Simek)
tedious - 1.4.3

Published by arthurschreiber about 9 years ago

  • #180 Added aliases for some data types ending with N. (Marcin Konicki)
tedious - 1.6.0

Published by arthurschreiber about 9 years ago

  • #209 Added default scale for data types requiring it. (Chris Dibbern)
tedious - 1.5.8

Published by arthurschreiber about 9 years ago

  • #211 Do not attempt to connect after instance lookup in final state. (Ben Youngblood) Also should fix #185.
tedious - 1.5.7

Published by arthurschreiber about 9 years ago

  • #206 Allow eliminating request timeouts with options.requestTimeout = 0. (Bret Copeland)
tedious - 1.5.5

Published by arthurschreiber about 9 years ago

  • #200 Added options.columnNameReplacer. (Bret Copeland)
tedious - 1.5.4

Published by arthurschreiber about 9 years ago

  • #197 Fix nvarchar(max) in BulkLoad insert. (Bret Copeland)
tedious - 1.5.3

Published by arthurschreiber about 9 years ago

  • #199 Set keepAlive on connected socket. (ravensteel)