Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: How can I update DB using PERL?
In article <381D5CB7.C5A5D8AA_at_soback.kornet.net>,
=?EUC-KR?B?s+vI8bDm?=(Hui Kyoung) <noddang_at_soback.kornet.net> wrote:
>$dbh->do("update T1 set F1=$V1, F2=$V2, F3=$V3 where num=$v_num") || die
>DBI->errstr;
$dbh->{RaiseError} = 1;
my $sth = $dbh->prepare( qq{
UPDATE t1 SET f1=?, f2=?, f3=? WHERE NUM=? });
What does this yield?
John
groenveld_at_acm.org
Received on Mon Nov 01 1999 - 14:55:55 CST
![]() |
![]() |