xo::db::sql::acs_attribute proc drop_description (public)

 xo::db::sql::acs_attribute[i] drop_description [ -dbn dbn ] \
    -object_type object_type  -attribute_name attribute_name  \
    -description_key description_key 

Defined in packages/xotcl-core/tcl/05-db-procs.tcl

Automatically generated method

Switches:
-dbn
(optional)
-object_type
(required)
-attribute_name
(required)
-description_key
(required)

Partial Call Graph (max 5 caller/called nodes):
%3 db_with_handle db_with_handle (public) xo::db::sql::acs_attribute proc drop_description xo::db::sql::acs_attribute proc drop_description xo::db::sql::acs_attribute proc drop_description->db_with_handle

Testcases:
No testcase defined.
Source code:
#function_args: {OBJECT_TYPE {}} {ATTRIBUTE_NAME {}} {DESCRIPTION_KEY {}}
foreach var [list OBJECT_TYPE ATTRIBUTE_NAME DESCRIPTION_KEY]  {
  set varname [string tolower $var]
  if {[info exists $varname]} {
    set $var [set $varname]
    set _$var :$var
  } else {
    set _$var null
  }
}
set sql "
select acs_attribute__drop_description($_OBJECT_TYPE$_ATTRIBUTE_NAME$_DESCRIPTION_KEY) 
    "
db_with_handle -dbn $dbn db {
  #ns_log notice "--sql=$sql"
  return [ ns_set value [ns_pg_bind 0or1row $db $sql] 0 ]
}
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: