summaryrefslogtreecommitdiffstats
path: root/kexi/doc/dev/INTERESTING
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
commit8362bf63dea22bbf6736609b0f49c152f975eb63 (patch)
tree0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kexi/doc/dev/INTERESTING
downloadkoffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz
koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kexi/doc/dev/INTERESTING')
-rw-r--r--kexi/doc/dev/INTERESTING29
1 files changed, 29 insertions, 0 deletions
diff --git a/kexi/doc/dev/INTERESTING b/kexi/doc/dev/INTERESTING
new file mode 100644
index 000000000..cbcba162e
--- /dev/null
+++ b/kexi/doc/dev/INTERESTING
@@ -0,0 +1,29 @@
+----------------------------------------------------------
+ Interesting sources of information
+ - projects, docs, etc. that can help in Kexi development
+----------------------------------------------------------
+
+2003-10-06 js
+
+[SQL Translator and Text RecordParser]
+
+from README:
+ SQL::Translator is a group of Perl modules that converts
+ vendor-specific SQL table definitions into other formats, such as
+ other vendor-specific SQL, ER diagrams, documentation (POD and HTML),
+ XML, and Class::DBI classes. The main focus of SQL::Translator is
+ SQL, but parsers exist for other structured data formats, including
+ Excel spreadsheets and arbitrarily delimited text files. Through the
+ separation of the code into parsers and producers with an object model
+ in between, it's possible to combine any parser with any producer, to
+ plug in custom parsers or producers, or to manipulate the parsed data
+ via the built-in object model. Presently only the definition parts of
+ SQL are handled (CREATE, ALTER), not the manipulation of data (INSERT,
+ UPDATE, DELETE).
+
+http://search.cpan.org/src/KCLARK/
+
+Note: can be usefull for KexiDB develoment
+to see their parsers and converters
+
+----------------------------------------------------------