mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 12:13:57 +00:00
892 B
892 B
dbgate-sqltree
JavaScript/TypeScript SQL query-builder library
dbgate-sqltree hold query definition in RAW JSON objects.
Sample usage
const { treeToSql, dumpSqlSelect } = require("dbgate-sqltree");
const dbgatePluginMysql = require("dbgate-plugin-mysql");
const select = {
commandType: "select",
from: {
name: {
pureName: "Album",
},
},
columns: [
{
exprType: "column",
columnName: "name",
},
],
orderBy: [
{
exprType: "column",
columnName: "id",
direction: "ASC",
},
],
};
const sql = treeToSql(dbgatePluginMysql.driver, select, dumpSqlSelect);
console.log("Generated query:", sql);
See TypeScript definitions for complete list of available SQL command options.
Installation
yarn add dbgate-sqltree