|
Project Information
Members
Featured
Downloads
|
Project AimsThis project aims to create a simple application and framework for converting / migrating between one database format to another. This is achieved through the use of Parsers and Producers. ParserA parser takes a given input and turns it into structured Java objects. Anything that can be through of in some way as a database can successfully be implemented as a parser. For example a CSV file is the equivalent of a CREATE TABLE and INSERT statements. The following parsers are available:
ProducerA producer takes the structured Java objects and outputs them in the correct format (CSV, XML, SQL, etc) The following producers are available:
|