Help for this page

Select Code to Download


  1. or download this
    # query example
    query:[ select foo from table X where foo.whatever is acceptable ]
    
  2. or download this
    # template example
    identifier TEMPLATE
    ...
      query:[....];
      more code that uses query results; etc.
    }
    
  3. or download this
    $TemplateParser = new Parse::RecDescent(<<'__GRAMMAR__');
    
    ...
                | <do-this-other-parser: $QueryParser->query() >
    
    __GRAMMAR__