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-v2

This is updated version of CSV-IN-MSSQL, the update is about extract the column_name and records automatically and insert in the table
https://github.com/gurrudev/csv-in-mssql-v2

csv ejs express mssql multer nodejs

Last synced: 28 days ago
JSON representation

This is updated version of CSV-IN-MSSQL, the update is about extract the column_name and records automatically and insert in the table

Awesome Lists containing this project

README

        

# CSV-IN-MSSQL

📦Install

```sh
npm install
```

💻Usage

```js
// add 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
```