xo::db::sql::acs_content proc update_searchable_p (public)

 xo::db::sql::acs_content[i] update_searchable_p [ -dbn dbn ] \
    -content_id content_id  -searchable_p searchable_p 

Defined in /var/www/openacs.org/packages/xotcl-core/tcl/05-db-procs.tcl

Automatically generated method

Switches:
-dbn (optional)
-content_id (required)
-searchable_p (required)

Testcases:
No testcase defined.
Source code:
#function_args: {CONTENT_ID {}} {SEARCHABLE_P {}}
foreach var [list CONTENT_ID SEARCHABLE_P]  {
  set varname [string tolower $var]
  if {[info exists $varname]} {
    set $var [set $varname]
    set _$var :$var
  } else {
    set _$var null
  }
}
set sql "
select acs_content__update_searchable_p($_CONTENT_ID$_SEARCHABLE_P) 
    "
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: