README 479 B

1234567891011121314151617181920
  1. sqlp is SQL parser library
  2. sqp is intended as library for simple dbmi drivers (like dbf, txt).
  3. yac.y and lex.l was originally stolen from unixODBC 3/2001 and modified.
  4. An input may be subset of SQL statements. Currently supported:
  5. SELECT FROM WHERE
  6. INSERT INTO
  7. UPDATE WHERE
  8. DELETE FROM WHERE
  9. CREATE TABLE
  10. DROP TABLE
  11. [...]
  12. New types have to be added in yac.y, lex.l, print.c and
  13. ../../../include/sqlp.h .
  14. In ./test/ is a test program to the the SQL parser (see
  15. README there).