Markus Neteler 05de9b44e0 SQL manual: examples updated il y a 10 ans
..
test 16a6b956df Enable LFS globally il y a 15 ans
Makefile 8f6f95c3fe Keep lex/yacc-generated files il y a 13 ans
README db49180dd7 welcome to GRASS 7.0.svn il y a 17 ans
alloc.c 8868d4b686 indent -bad -bap -bbb -br -bli0 -bls -cli0 -ncs -fc1 -hnl -i4 \ il y a 17 ans
print.c 8868d4b686 indent -bad -bap -bbb -br -bli0 -bls -cli0 -ncs -fc1 -hnl -i4 \ il y a 17 ans
sql.c fc2eb38ac8 update email addr il y a 15 ans
sql.html 05de9b44e0 SQL manual: examples updated il y a 10 ans
sqlp.l 6c2b35868a Add (more) missing %{ ... %} il y a 12 ans
sqlp.y 1292bf9a1e Major build system clean-up il y a 17 ans

README

sqlp is SQL parser library

sqp is intended as library for simple dbmi drivers (like dbf, txt).
yac.y and lex.l was originally stolen from unixODBC 3/2001 and modified.

An input may be subset of SQL statements. Currently supported:
SELECT FROM WHERE
INSERT INTO
UPDATE WHERE
DELETE FROM WHERE
CREATE TABLE
DROP TABLE
[...]

New types have to be added in yac.y, lex.l, print.c and
../../../include/sqlp.h .
In ./test/ is a test program to the the SQL parser (see
README there).