Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gurrudev/csv-in-mssql

This is a simple example of uploading csv file in mssql server to extract the data from the csv file and add records in table
https://github.com/gurrudev/csv-in-mssql

csv ejs expressjs mssql multer nodejs

Last synced: 28 days ago
JSON representation

This is a simple example of uploading csv file in mssql server to extract the data from the csv file and add records in table

Awesome Lists containing this project

README

        

# CSV-IN-MSSQL

📦Install

```sh
$ npm install
```

💻Usage

```js
// replace the config in your index.js
const config = {
user: 'xxxx',
password: 'xxxx',
server: 'xxxx', // e.g. 'localhost'
database: 'xxxx',
options: {
encrypt: true, // For secure connection
trustServerCertificate: true,
}
};
```

🚀Start

```sh
$ npm start
```