Help for this page

Select Code to Download


  1. or download this
    my $condition = $oracle_connector->opts->condition;
    
  2. or download this
    my $where = "";
    $where = "WHERE status = '$condition'" if $condition;
    
  3. or download this
    if ($condition) {
        $where = "WHERE status = '$condition'"
    }
    
  4. or download this
    $where = " WHERE status = '$condition'"