dp_sql_struct_do_update_or_insert

one of the documented procedures in this installation of the ACS
Usage:
dp_sql_struct_do_update_or_insert   db   sql_struct   table_name   { where_clause "" }
What it does:
Defined in: /web/philip/tcl/data-pipeline-defs.tcl

Source code:



    set ora_result [dp_sql_struct_do_update  $db $sql_struct $table_name $where_clause]

    if {$ora_result == 0} {
	return [dp_sql_struct_do_insert $db $sql_struct $table_name]
    }


philg@mit.edu