Code Monkey home page Code Monkey logo

node-mssql-examples's Introduction

Examples using various MS SQL drivers and ORM modules

Simple example applications connecting to an MS SQL DB hosted in Azure.

Assumes you have an available MS SQL Server instance with the AdventureWorksLT 2014 sample DB.

Run

# Set environmental variables for DB connection
export MSSQL_USERNAME='USERNAME'
export MSSQL_PASSWORD='PASSWORD'
export MSSQL_SERVER='SERVER.database.windows.net'
export MSSQL_DATABASE='AdventureWorks'

# install dependencies
npm install

node tedious.js
node mssql.js
node knex.js
node sequelize.js

Seqelize

Using sequelize-auto I generated models for the existing schema:

npm install -g tedious
npm install -g sequelize-auto

sequelize-auto -o "./models" -d DATABASE -h SERVER -u USERNAME -p 1433 -x PASSWORD -e mssql -c sequelize-auto-config.json

Had to manually correct UUIDV4 to UUID in models and removed some models generated for system db objects and views.

Notes

  • Tedious is just a Javascript driver for TDS, which is nice as it does not require you to install ODBC
  • MSSQL is a wrapper around Tedious, adding nicer query handling and promises
  • Knex is a query builder which uses MSSQL as the DB client to build complex queries and operations
  • Sequelize is an opinionated ORM library that takes a Code-First approach, with model objects defining the schema used in the DB

Links

node-mssql-examples's People

Contributors

stevenalexander avatar

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.