I want to do something real simple: insert a sequence
value into a database using DBI.
At the sql prompt I can do this using "insert into blah (blah_key, blah_name) values (blah_seq.nextval, 'jim'),
but in my perl script, I have the following execute command: "execute(blah_seq.nextval, $blah_name)", and that
gives me an error. I've tried putting single quotes around blah_seq.nextval, but that doesn't work either.