Navigation Menu

Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Wilson committed Jul 25, 2012
1 parent 4a5bd0b commit d75ded1
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 2 deletions.
File renamed without changes.
7 changes: 5 additions & 2 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "mssql",
"name": "mssqlx",
"version": "0.0.1",
"description": "Microsoft SQL Server Command Line Interface",
"description": "NodeJs Microsoft SQL Server Command Line Interface",
"main": "index.js",
"scripts": {
"test": "mocha"
Expand All @@ -20,5 +20,8 @@
"devDependencies": {
"mocha": "*",
"should": "*"
},
"bin": {
"mssqlx": "./bin/mssqlx"
}
}
43 changes: 43 additions & 0 deletions readme.md
@@ -0,0 +1,43 @@
# MSSqlx

0.0.1

A microsoft sql server nodejs command-line interface

## Install

``` sh
npm install mssqlx -g
```

## Setup

Create a config.json file in the directory you want to use mssqlx

``` json
{
"production": {
"server": "127.0.0.1",
"userName": "sa",
"password": "",
"options": { "database": "master" }
}
}
```

## Usage

``` sh
echo "select id, name from sysobjects" | mssqlx | prettyjson
```

## Roadmap

This projects goal is to create an awesome cli experience for querying mssql, it hopes the follow the footsteps of the futon-cli

This first release is a mvp just to put some mileage on the tedious mssql driver and identify any issues.

## Feedback

Please submit feedback via Github Issues

0 comments on commit d75ded1

Please sign in to comment.