sec_lookup_property_not_cached (private)
sec_lookup_property_not_cached id module name
Defined in packages/acs-tcl/tcl/security-procs.tcl
Look up a particular session property from the database and record the last hit when found.
- Parameters:
- id (required)
- module (required)
- name (required)
- Returns:
- empty, when no property is recorded or a list containing property_value and secure_p
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.
Source code: if { ![db_0or1row property_lookup_sec { select property_value, secure_p from sec_session_properties where session_id = :id and module = :module and property_name = :name }] } { return "" } set new_last_hit [clock seconds] db_dml update_last_hit_dml { update sec_session_properties set last_hit = :new_last_hit where session_id = :id and property_name = :name } return [list $property_value $secure_p]Generic XQL file: packages/acs-tcl/tcl/security-procs.xql
PostgreSQL XQL file: packages/acs-tcl/tcl/security-procs-postgresql.xql
Oracle XQL file: packages/acs-tcl/tcl/security-procs-oracle.xql