Go to file
2024-04-09 14:55:33 +08:00
src init 2024-04-07 19:10:38 +08:00
.env init 2024-04-07 19:10:38 +08:00
.env.preview-es init 2024-04-07 19:10:38 +08:00
.env.preview-umd init 2024-04-07 19:10:38 +08:00
.eslintignore init 2024-04-07 19:10:38 +08:00
.eslintrc.yml init 2024-04-07 19:10:38 +08:00
.gitignore init 2024-04-07 19:10:38 +08:00
.nvmrc init 2024-04-07 19:10:38 +08:00
index.html init 2024-04-07 19:10:38 +08:00
package-lock.json init 2024-04-07 19:10:38 +08:00
package.json fix: 添加types 2024-04-09 14:55:33 +08:00
README.md init 2024-04-07 19:10:38 +08:00
tsconfig.json fix: 添加types 2024-04-09 14:55:33 +08:00
tsconfig.node.json init 2024-04-07 19:10:38 +08:00
vite.config.ts init 2024-04-07 19:10:38 +08:00

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()
})