More TODO items.
[dbsrgits/SQL-Translator.git] / TODO
1 *   The regular Sybase parser is only just functional.  If you are
2     interested in using Sybase, I would suggest serializing the schema
3     (via YAML or Storable) using the DBI-Sybase parser and then
4     manipulating that as you see fit. 
5
6 *   Some way to deeply check to schema objects, e.g., for testing I
7     parse a MySQL schema, translate to Oracle, then parse the created
8     Oracle schema and want to check the two schema objects.  I've
9     started a script called "sqlt-diff" to diff two schemas, but it's 
10     not included with the 0.03 release.  Submit ideas on how this
11     should work and what it should create (e.g., text reports and ALTER 
12     statements) to the list.
13
14 *   Add more DBI parsers!  These have the potential to be very
15     thorough and far faster than parsing text files with
16     Parse::RecDescent.
17
18 *   At least allow more pass-through of INSERT, DELETE, and UPDATE
19     statements
20
21 *   Add INSERT statements for xSV, Excel parsers to automatically
22     create INSERTs for each row of data in the source file
23
24 *   Somehow merge ClassDBI producer with CGI::FormBuilder or Template
25     Toolkit and some sort of automated CGI builder to create
26     view/create/edit/delete forms for objects based on schema defs
27
28 *   Embetter the Diagram producer to use some real graphing algorithms
29     to distribute the tables so that the lines don't overlap so badly
30
31 *   Integrate more with some standard XML schema representations,
32     maybe like Torque DB (http://db.apache.org/torque/).  We've
33     started messing around with XMI, too, but that wasn't quite usable
34     for the 0.03 release.
35
36 *   Possibly write a basic ANSI-92 SQL parser which could be extended
37     when writing other new parsers.
38
39 *   Support for precompiled Parse::RecDescent grammars.
40
41 *   More code generation producers, such as Java, PHP, and Python.
42
43 *   Integrate Module::Pluggable as a replacement for the _list method.