rss_support::get_subscr_id (public)

 rss_support::get_subscr_id [ -summary_context_id summary_context_id ] \
    [ -impl_name impl_name ] [ -owner owner ]

Defined in packages/rss-support/tcl/rss-support-procs.tcl

Return subscription id

Switches:
-summary_context_id
(optional)
Object_id subscribed to
-impl_name
(optional)
Implementation (object_type) name
-owner
(optional)
Owner of implementation (package_key)
Returns:
Error:
Author:
Dave Bauer <dave@thedesignexperience.org>
Created:
2005-02-04

Partial Call Graph (max 5 caller/called nodes):
%3 news_update_rss news_update_rss (private) rss_support::get_subscr_id rss_support::get_subscr_id news_update_rss->rss_support::get_subscr_id rss_support::del_subscription rss_support::del_subscription (public) rss_support::del_subscription->rss_support::get_subscr_id db_string db_string (public) rss_support::get_subscr_id->db_string

Testcases:
No testcase defined.
Source code:
    return [db_string get_subscr_id {
        select subscr_id
         from rss_gen_subscrs
        where impl_id = (select impl_id
                          from acs_sc_impls
                         where impl_name = :impl_name
                           and impl_contract_name = 'RssGenerationSubscriber'
                           and impl_owner_name = :owner)
          and summary_context_id = :summary_context_id
    }]
XQL Not present:
PostgreSQL, Oracle
Generic XQL file:
packages/rss-support/tcl/rss-support-procs.xql

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