Skip to content

Halynsky/node-sql-reader

Repository files navigation

node-sql-reader

This library can parse pure sql file or sql string into queries array.
The main use case that made me create this library was the inability of TypeOrm to run sql file. I needed to run sql file with test data each time when I restart a server to get the same starting test data. So TypeOrm can run the single query, but it can't run a file with sql. So this lib can help you to parse a file and get separate queries from it.

Install

npm install node-sql-reader

Usage

test_data.sql

INSERT INTO users (email, password, name) VALUES ('dummy1@somemail.com', 'hashed_password1', 'dummy1');
INSERT INTO users (email, password, name) VALUES ('dummy2@somemail.com', 'hashed_password2', 'dummy2');
INSERT INTO users (email, password, name) VALUES ('dummy3@somemail.com', 'hashed_password3', 'dummy3');

TestDataInitializer.ts

import { SqlReader } from 'node-sql-reader'
import * as path from 'path';

export class TestDataInitializer {
    initTestData() {
        let queries = SqlReader.readSqlFile(path.join(__dirname, "../database/test_data.sql"))
        for (let query of queries) {
            // replace it with your query runner
            SomeQuerryRunner.runQuerry(query)
        }
    }
}

/*
queries array:
[
   "INSERT INTO users (email, password, name) VALUES ('dummy1@somemail.com', 'hashed_password1', 'dummy1')",
   "INSERT INTO users (email, password, name) VALUES ('dummy2@somemail.com', 'hashed_password2', 'dummy2')",
   "INSERT INTO users (email, password, name) VALUES ('dummy3@somemail.com', 'hashed_password3', 'dummy3')",
]
*/

API

  • parseSqlString(sqlString: string): string[]
    Parse all queries from sql string. Returns array of queries.
  • readSqlFile(filePath: string): string[]
    Reads all queries from file. Returns array of queries.
  • runSqlFile(filepath: string, runnerFn: (query: string) => void)
    Parse all queries from sql file and runs runnerFn for each of them.
  • runSqlFileAsync(filepath: string, runnerFn: (query: string) => Promise<any>): Promise<any>
    Parse all queries from sql file and runs runnerFn for each of them in ASYNC mode.

Features requests / bugs

Feature requests and bugs on github

About

Library to parse pure sql file or sql string in to queries array

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •