Hi,
I've got the following error with a scheduled proc:
[-sched-] Error: Tcl exception:
expected integer but got ""
while executing
"upvar $level_up "$var_name:rowcount" counter"
(procedure "db_multirow" line 37)
invoked from within
"db_multirow get_recent_rating_ids get_recent_rating_ids {select recent_ratings_id from recent_ratings} {
db_exec_plsql delete_acs_object {select a..."
(procedure "rating::rate::free" line 2)
invoked from within
"rating::rate::free"
("eval" body line 1)
invoked from withinyy
"eval [concat [list $proc] $args]"
(procedure "ad_run_scheduled_proc" line 46)
invoked from within
"ad_run_scheduled_proc {f f 60 rating::rate::free {} 1229705918 0 f}"
The proc is the following:
ad_proc -public rating::rate::free {} {
db_multirow get_recent_rating_ids get_recent_rating_ids {select * from recent_ratings} {
db_exec_plsql delete_acs_object {select acs_object__delete (:recent_ratings_id)}
}
}
Thanks in advance for any help you can give me.
Carlos