Skip to content
This repository has been archived by the owner on Jun 24, 2021. It is now read-only.

Latest commit

 

History

History
10 lines (7 loc) · 371 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 371 Bytes

edge-execsql

Simple class to execute sql scripts and perform bulk inserts using Node and Edge.js.

To use, copy NoMoDb.dll and nomodb.js to your project, update the connection string in nomodb.js, and:

var nomodb = require('./nomodb');
nomodb.bulkInsert('table-name', 'c:\\path\\to\\csv.txt');
nomodb.executeScript('c:\\path\\to\\script.sql');