1
Fork 0

start adding basic dml

parser and pretty printer for statements
add query statement
add support for
  insert
  update
  delete
  truncate
bonus ddl:
  limited create schema
  drop schema

add grammar notes to the new test files
This commit is contained in:
Jake Wheat 2015-08-01 20:26:00 +03:00
commit dfa84072dc
13 changed files with 684 additions and 2238 deletions

View file

@ -4,9 +4,8 @@ synopsis: A parser for SQL.
description: A parser for SQL. Parses most SQL:2011
queries, DML, schema/DDL, transaction control,
session and connection management, access
control. Please see the homepage for more
information
session and access control. Please see the
homepage for more information
<http://jakewheat.github.io/simple-sql-parser/>.
homepage: http://jakewheat.github.io/simple-sql-parser/