0.0.1-alpha.8 • Published 22 days ago

dt-sql-parser-semantic-analyse-plugin v0.0.1-alpha.8

Weekly downloads
-
License
-
Repository
-
Last release
22 days ago

dt-sql-parser-semantic-analyse-plugin

A dt-sql-parser plugin with semantic result. Theory.

Installation

npm install dt-sql-parser-semantic-analyse-plugin

Quick Usage

const myPlugin = new DtSqlParserSemAnalysePlugin()
const sql = 'SELECT a| FROM t'
const caretColumn = sql.indexOf('|') + 1
const result = myPlugin.parse(sql.replace('|', ''), { lineNumber: 1, columnNumber: caretColumn })
console.log(result)

This will use a postgresql Parser and build-in rules/preprocessors

Add a Rule Chain

import { PostgresSQL } from 'dt-sql-parser'
import { PostgreSQLParser } from 'dt-sql-parser/dist/lib/pgsql/PostgreSQLParser'

const myPlugin = new DtSqlParserSemAnalysePlugin({
  parse: {
    parser: new PostgresSQL()
    stmts: [
      'selectstmt'
    ],
    entities: [
      'column_name'
    ],
    rules: {
      'select_columns': [
        PostgreSQLParser.RULE_insertstmt,
        PostgreSQLParser.RULE_column_name
      ]      
    }
  }
})
const sql = 'SELECT a| FROM t'
const caretColumn = sql.indexOf('|') + 1
const result = myPlugin.parse(sql.replace('|', ''), { lineNumber: 1, columnNumber: caretColumn })
console.log(result)

Notice: A rule must start with a/an statement/entity and stop with an entity. You should add a node keywords(keyword is in your parser with format: RULE_[keyword]) into stmts/entities before using it.

Add a preprocessor

const myPlugin = new DtSqlParserSemAnalysePlugin({
  preprocessor: [
    (sql) => sql.toUpperCase()
})
0.0.1-alpha.7

22 days ago

0.0.1-alpha.8

22 days ago

0.0.1-alpha.6

25 days ago

0.0.1-alpha.5

27 days ago

0.0.1-alpha.4

28 days ago

0.0.1-alpha.2

28 days ago

0.0.1-alpha.3

28 days ago

0.0.1-alpha.1

29 days ago