Skip to content

Node TDS module for connecting to SQL Server databases.

License

Notifications You must be signed in to change notification settings

everhardt/tedious

This branch is 6 commits ahead of, 16 commits behind tediousjs/tedious:refs/heads/master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b6b88f1 · Aug 7, 2024
Jul 15, 2023
Aug 7, 2024
Jun 17, 2020
Oct 1, 2023
May 6, 2023
Aug 7, 2024
Aug 7, 2024
Jul 7, 2022
Aug 5, 2019
May 15, 2022
May 11, 2017
Jun 28, 2020
Aug 26, 2014
Jul 19, 2018
Feb 7, 2023
Jun 26, 2024
Aug 4, 2024
Aug 4, 2024
Nov 3, 2019
Feb 28, 2024
Aug 6, 2023

Repository files navigation

Tedious (node implementation of TDS)

Dependency Status NPM version Build Status Build Status Slack StatusCode Coverage

Tedious is a pure-Javascript implementation of the TDS protocol, which is used to interact with instances of Microsoft's SQL Server. It is intended to be a fairly slim implementation of the protocol, with not too much additional functionality.

NOTE: New columns are nullable by default as of version 1.11.0

Previous behavior can be restored using config.options.enableAnsiNullDefault = false. See pull request 230.

NOTE: Default login behavior has changed slightly as of version 1.2

See the changelog for version history.

Supported TDS versions

  • TDS 7.4 (SQL Server 2012/2014/2016/2017/2019/2022)
  • TDS 7.3.B (SQL Server 2008 R2)
  • TDS 7.3.A (SQL Server 2008)
  • TDS 7.2 (SQL Server 2005)
  • TDS 7.1 (SQL Server 2000)

Installation

Node.js is a prerequisite for installing tedious. Once you have installed Node.js, installing tedious is simple:

npm install tedious

Getting Started

Documentation

More documentation and code samples are available at tediousjs.github.io/tedious/

Name

Tedious is simply derived from a fast, slightly garbled, pronunciation of the letters T, D and S.

Developer Survey

We'd like to learn more about how you use tedious:

Contributing

We welcome contributions from the community. Feel free to checkout the code and submit pull requests.

License

Copyright (c) 2010-2021 Mike D Pilsbury

The MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Node TDS module for connecting to SQL Server databases.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 52.7%
  • JavaScript 47.3%