in reply to create table is not allowed with in a multi statement transaction
So it seems that your database doesn't allow table creation in stored procedures.
A workaround is to try $dbh->do("create table test(id integer)");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: create table is not allowed with in a multi statement transaction
by vsudha (Initiate) on Jan 23, 2008 at 11:04 UTC | |
by Anonymous Monk on Jan 23, 2008 at 11:25 UTC | |
by vsudha (Initiate) on Jan 23, 2008 at 15:02 UTC |