bug_tracker::get_keywords_not_cached (private)

 bug_tracker::get_keywords_not_cached -package_id package_id

Defined in packages/bug-tracker/tcl/bug-tracker-procs.tcl

Switches:
-package_id
(required)

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::get_keywords bug_tracker::get_keywords (private) bug_tracker::get_keywords_not_cached bug_tracker::get_keywords_not_cached bug_tracker::get_keywords->bug_tracker::get_keywords_not_cached db_list_of_lists db_list_of_lists (public) bug_tracker::get_keywords_not_cached->db_list_of_lists

Testcases:
No testcase defined.
Source code:
    return [db_list_of_lists select_package_keywords {}]
Generic XQL file:
<fullquery name="bug_tracker::get_keywords_not_cached.select_package_keywords">
    <querytext>
        
        select child.keyword_id as child_id,
               child.heading as child_heading,
               parent.keyword_id as parent_id,
               parent.heading as parent_heading
        from   bt_projects p,
               cr_keywords parent,
               cr_keywords child
        where  p.project_id = :package_id
        and    parent.parent_id = p.root_keyword_id
        and    child.parent_id = parent.keyword_id
        order  by parent.heading, child.heading
    </querytext>
</fullquery>
packages/bug-tracker/tcl/bug-tracker-procs.xql

PostgreSQL XQL file:
packages/bug-tracker/tcl/bug-tracker-procs-postgresql.xql

Oracle XQL file:
packages/bug-tracker/tcl/bug-tracker-procs-oracle.xql

[ hide source ] | [ make this the default ]
Show another procedure: