Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
The error I keep getting is:use DBI; #connect to oracle data base #blah blah blah my $sql_cmd = "create sequence seq_the_table;"; $dbh->execute( $sql_cmd ); $sql_cmd = "alter table the_table add ( seq number primary key default + seq_the_table.nextval );"; $dbh->execute( $sql_cmd );
Edit kudra, 2002-08-22 Changed title
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: I can't see the error?
by rbc (Curate) on Aug 21, 2002 at 19:13 UTC | |
|
Re: I can't see the error?
by DamnDirtyApe (Curate) on Aug 21, 2002 at 18:43 UTC | |
|
Re: I can't see the error?
by fglock (Vicar) on Aug 21, 2002 at 18:06 UTC | |
|
Re: I can't see the error?
by smitz (Chaplain) on Aug 22, 2002 at 07:49 UTC | |
|
Re: I can't see the error?
by neilwatson (Priest) on Aug 21, 2002 at 18:15 UTC | |
|
Re: I can't see the error?
by sschneid (Deacon) on Aug 21, 2002 at 18:34 UTC |