-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to Parse QueryExecute Functions #49
Comments
the parser seems to get it ok. Is it an issue with the CFLint objects and the decompile method? |
@jerronjames, That's from the FunctionLengthChecker isn't it? |
Indeed it is with the function length checker. I just excluded it, and it ran fine. Guess I’ll be working on that next week! From: ryaneberly [mailto:notifications@github.com] @jerronjameshttps://github.com/jerronjames, That's from the FunctionLengthChecker isn't it? — |
Is reporting:
decompile: [ public function getSourceTemplates(required sourceTemplateNum) {, var result = QueryExecute(' , SELECT info_card_id, document_num, revision_nm, title_nm , FROM tdc_doc_infocard , WHERE info_card_id = :sourceTemplateNum , ORDER BY UPPER(document_num) ASC, revision_seq DESC , ', {sourceTemplateNum:{value:'#sourceTemplateNum#',cfsqltype:'cf_sql_varchar'}}); return result;, }] { var result = QueryExecute(' SELECT info_card_id, document_num, revision_nm, title_nm FROM tdc_doc_infocard WHERE info_card_id = :sourceTemplateNum ORDER BY UPPER(document_num) ASC, revision_seq DESC ', {sourceTemplateNum:{value:'#sourceTemplateNum#',cfsqltype:'cf_sql_varchar'}}); return result; }
The text was updated successfully, but these errors were encountered: