Package Specification

The Query-Text utilities serves as parsers that extract infomation from the saved query-text

The standard format of the query text supported is specified below:

SELECT "originalColumn1" [AS alias1] [,"originalColumn2" [AS alias2]]... [,"originalColumnN" [AS aliasN]] FROM tableName [ : { "columnName1", "originalColumn1" ,DataType [;"columnName2","originalColumn2",DataType]... [;"columnNameN", "originalColumnN",DataType]}]


An example of the specification above is shown below:

SELECT "A", "B" FROM table : {"a","A",STRING; "b","B",DATE}