in reply to DBD ERROR: error possibly near <*> indicator at char

I just tested the following code in Oracle Express, and it works: a new row is inserted. The database is on my local machine. Note that AutoCommit is true.
use DBI; my $dd = DBI->connect('dbi:Oracle:', 'scott', 'tiger', { RaiseError => 1, PrintError => 0 }); my $sth = $dd->prepare("insert into prod (ss) select 1+max(ss) from pr +od"); $sth->execute; $dd->disconnect;
So, I see no conceptual reason why it shouldn't work.

Replies are listed 'Best First'.
Re^2: DBD ERROR: error possibly near <*> indicator at char
by shalu (Initiate) on Sep 24, 2010 at 12:46 UTC

    still same issue... no idea whats going on