Joost
Thanks for pointing out the error,
Here's the updated code
%ORA_MAPPING = (
'Data_id' => 'Ticket_Data_seq.nextval',
'Action' => "Problem Submit",
'Cust_Ticket_Number' => "",
'Our_Ticket_Number' => "$data->{'TicketNumber'}",
'msg_id' => "",
'time_stamp' => "",
'Description' => "",
'EL_Edesc' => "",
'prov_id' => "EECO::UTN::BPL",
'provclientid' => "BPC::123",
'prov_client_org' => "",
'prov_client_buz' => "",
'prov_schema_type' => ""
);
my $query = "INSERT INTO Ticket_Data (";
if ($action eq 'Problem Submit')
for $key ( keys %ORA_MAPPING ) {
$value = $ORA_MAPPING{$key};
next if $key eq "Data_id";
$query .=" $key, ";
}
$query .= " ) VALUES ($ORA_MAPPING{$_} )";
} elsif ($action eq 'Update') {
...
}
Is it possible to build the query using the above code or is there any other better approach.
I'd like to know that approach as well.
Many thanks for your time
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.