1----------------------------------------------------------
2 Interesting sources of information
3 - projects, docs, etc. that can help in Kexi development
4----------------------------------------------------------
5
62003-10-06 js
7
8[SQL Translator and Text RecordParser]
9
10from README:
11	SQL::Translator is a group of Perl modules that converts
12	vendor-specific SQL table definitions into other formats, such as
13	other vendor-specific SQL, ER diagrams, documentation (POD and HTML),
14	XML, and Class::DBI classes.  The main focus of SQL::Translator is
15	SQL, but parsers exist for other structured data formats, including
16	Excel spreadsheets and arbitrarily delimited text files.  Through the
17	separation of the code into parsers and producers with an object model
18	in between, it's possible to combine any parser with any producer, to
19	plug in custom parsers or producers, or to manipulate the parsed data
20	via the built-in object model.  Presently only the definition parts of
21	SQL are handled (CREATE, ALTER), not the manipulation of data (INSERT,
22	UPDATE, DELETE).
23
24http://search.cpan.org/src/KCLARK/
25
26Note: can be usefull for KexiDB develoment
27to see their parsers and converters
28
29----------------------------------------------------------
30