mrepo-sql
v1.0.5
Published
With mrepo-sql, the ability to create repositories with features that improve code readability and project scalability is added.
Readme
m-sql
Install
npm install m-sql
Usage
import { BaseRepository } from "mariadb-sp-repository";
const repo = new BaseRepository({
host: "localhost",
user: "root",
password: "123",
database: "test"
});
const result = await repo.execSP("SP_Product_List", {
params: [1]
});
