in reply to Re: DBI and Oracle 8i
in thread DBI and Oracle 8i
I'm thinking it may be a driver problem, I'm using dbd::oracle::version=1.03.my $sth = $dbh->prepare("INSERT INTO MY_TABLE(KEY,DATA) values (?,?)") +; my $key = 'key_worked'; my $data = 'data_worked'; $sth->bind_param(1, $key, { TYPE=>DBI::SQL_VARCHAR } ); $sth->bind_param(2, $data, { TYPE=>DBI::SQL_VARCHAR } ); $sth->execute; $sth->finish;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: DBI and Oracle 8i
by pileswasp (Monk) on Mar 09, 2001 at 22:34 UTC |