https://github.com/bradoyler/mssql-export
A node.js library (with CLI) to export MS-SQL table to CSV file
https://github.com/bradoyler/mssql-export
Last synced: 18 days ago
JSON representation
A node.js library (with CLI) to export MS-SQL table to CSV file
- Host: GitHub
- URL: https://github.com/bradoyler/mssql-export
- Owner: bradoyler
- Created: 2016-03-30T15:46:49.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-30T15:52:49.000Z (about 9 years ago)
- Last Synced: 2025-03-13T21:40:52.110Z (about 1 month ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mssql-export
A node.js library (with CLI) to export MS-SQL table to CSV file
## Install CLI
```
npm install -g mssql-export
```#### Usage: mssql-export [options] ``
```
Options:
-h, --help output usage information
-o, --output The output file
-c, --credentials Your credentials file
-l, --limit Row limit (TOP)
```## Setup config
copy `config.example.json` >> `/config.json` and input credentials
#### Test your config
```
$ npm test
```(see `test` folder)
## TODOs:
- Add Mocha tests