ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


playground:ebnf

EBNF test

An attempt for a more visual representation for Dictionary Column Attributes

Simplified EBNF syntax

columns = column, {",", column};
column = colname, type, {attribute};
type = metatype, [size];
attribute = ("AUTO|AUTOINCREMENT") 
| "CONSTRAINT", constraint 
| "DEF|DEFAULT", value | "DEFDATE" | "DEFTIMESTAMP" 
| "ENUM(", value, {",", value}, ")"
| "INDEX" 
| "NOQUOTE" 
| "NOTNULL" 
| "PRIMARY|KEY"
| "UNIQUE"
| "UNSIGNED"
;

Use with https://jacquev6.github.io/DrawGrammar/ to generate a PNG with railroad diagram

playground/ebnf.txt · Last modified: 2024/12/18 15:24 by dregad