Glynn Clements 2014e73a43 Rename description.html -> $(PGM).html 17 gadi atpakaļ
..
test 8868d4b686 indent -bad -bap -bbb -br -bli0 -bls -cli0 -ncs -fc1 -hnl -i4 \ 17 gadi atpakaļ
Makefile 2014e73a43 Rename description.html -> $(PGM).html 17 gadi atpakaļ
README db49180dd7 welcome to GRASS 7.0.svn 17 gadi atpakaļ
alloc.c 8868d4b686 indent -bad -bap -bbb -br -bli0 -bls -cli0 -ncs -fc1 -hnl -i4 \ 17 gadi atpakaļ
lex.l db49180dd7 welcome to GRASS 7.0.svn 17 gadi atpakaļ
print.c 8868d4b686 indent -bad -bap -bbb -br -bli0 -bls -cli0 -ncs -fc1 -hnl -i4 \ 17 gadi atpakaļ
sql.c 94516acb96 Eliminate preprocessor abuse 17 gadi atpakaļ
sql.html 2014e73a43 Rename description.html -> $(PGM).html 17 gadi atpakaļ
yac.y db49180dd7 welcome to GRASS 7.0.svn 17 gadi atpakaļ

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).