Index: openacs-4/packages/dotlrn-homework/tcl/dotlrn-homework-procs-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-homework/tcl/dotlrn-homework-procs-postgresql.xql,v diff -u -N -r1.1 -r1.2 --- openacs-4/packages/dotlrn-homework/tcl/dotlrn-homework-procs-postgresql.xql 17 Feb 2003 20:56:15 -0000 1.1 +++ openacs-4/packages/dotlrn-homework/tcl/dotlrn-homework-procs-postgresql.xql 9 Jun 2003 21:22:49 -0000 1.2 @@ -18,46 +18,38 @@ - FIX ME PLSQL -FIX ME PLSQL - begin - :1 := file_storage__new_file ( - item_id => :file_id, - title => :title, - folder_id => :parent_folder_id, - creation_user => :user_id, - creation_ip => :creation_ip, - indb_p => :indb_p - ); - end; + select file_storage__new_file ( + :title, + :parent_folder_id, + :user_id, + :creation_ip, + :indb_p, + :file_id + ); - FIX ME PLSQL -FIX ME PLSQL - begin - :1 := file_storage__new_version ( - filename => :filename, - description => :description, - mime_type => :mime_type, - item_id => :file_id, - creation_user => :user_id, - creation_ip => :creation_ip - ); - end; + select file_storage__new_version ( + :filename, + :description, + :mime_type, + :file_id, + :user_id, + :creation_ip + ); + - FIX ME LOB update cr_revisions set content = empty_blob() @@ -81,16 +73,12 @@ - FIX ME PLSQL -FIX ME PLSQL - begin - :1 := content_item__relate( - item_id => :homework_file_id, - object_id => :correction_file_id, - relation_tag => 'homework_correction' - ); - end; + select content_item__relate( + :homework_file_id, + :correction_file_id, + 'homework_correction' + );