Giter VIP home page Giter VIP logo

tds's Introduction

tds (node implementation of the TDS protocol for SQL Server)

tds is an implementation of the TDS protocol, which is used for communication with Microsoft's SQL Server.

Status

Current version: v0.0.9

Change log:

  • [v0.0.1] initial version
  • [v0.0.5] bugfixing because of issues 1 - 4
  • [v0.0.6] bugfixing because of issues 5
  • [v0.0.7] bugfixing because of issues 6
  • [v0.0.8] bugfixing because of issues 7
  • [v0.0.9] bugfixing because of issues 8

requierements:

  • Windows System with node.js (version >= 0.6.6)
    (other OS should be work too, but not tested until now)
  • CentOS 6.4 with node.js (version 0.10.4) node.js
    (has been tested succesfully)
  • SQL Server (version >= 2000) connection over TCP/IP (SQL authentification),
    SQL Server Express 2012

install

requierd modules

install the tds modul manually by copying the tds folder into the node_modules folder (npm coming soon) edit default.js, configure your database connection

module.exports = {

		ConnectionString : {
			/** database server */
			Server:'yourServer',

			/** database user's name */
			Login: 'yourUser',
			/** name of database to connect */
			Database: 'yourDatabase',
			/** database user's password */
			Password: 'yourPassword',
			/** database port */
			Port: 1433,
			/** socket-connection timeout */
			Timeout:10000
		},

		/** number of connections to use in connection pool
				0 will disable connection pooling
		*/
		poolSize: 0,
		/** duration of node-pool timeout */
		poolIdleTimeout: 30000000,
		/** port on that the tds server is listen */
		tdsServerPort: 8888
	}
  1. open a commad shell
  2. navigate to your node folder (i.e. "c:\program files\nodejs")
  3. cd node_modules
  4. cd tds4node
  5. start the tds server: node tds_server

normally tds_server listen at port 8888
to test your installation, start your browser and fire a simple request like:
http://localhost:8888/tds?select getdate() as d

on a working system the response of the example request looks like the following JSON data with the actual date:

{

    "result": [
        {
            "colData": [
                {
                    "value": "d",
                    "precision": null,
                    "scale": null,
                    "type": 61
                }
            ],
            "rows": [
                [
                    "2012-11-02T16:15:48.716Z"
                ]
            ],
            "outputParams": [ ],
            "returnStatus": null
        }
    ],
    "error": {
        "sqlErrNo": null,
        "message": ""
    }

}

notice: make sure, that your browser is able to handle http-headers
with 'Content-Type': 'application/json; charset=utf-8', for Firefox you can use JSONView

Test

after install you are able to run the tests

  1. change to your node folder
  2. cd node_modules
  3. cd tds4node
  4. node tds_test

Documentation

Modul structure overview:

modul structure

browse the deatiled documentation here. (docs/chart/tds_chart.html)

License

(The MIT License)

Copyright (c) 2011-2012 H. Ristau

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.

tds's People

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

tds's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.