You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DBD::Oracle or rather Oracle in common doesn't have a "LIMIT" key word, so
database->quick_select
produces invalid queries!
Dancer::Plugin::Database::Handle
306: } elsif ($typeeq'SELECT' && !wantarray) {
307: # We're only returning one row in scalar context, so don't ask for any
308: # more than that
309: $sql .= " LIMIT 1";
310: }
(DBD ERROR: error possibly near <> indicator at char 46 in 'SELECT * FROM "mytable" WHERE "id"=:p1 <>LIMIT 1') [for Statement "SELECT * FROM "mytable" WHERE "id"=? LIMIT 1"] at /usr/lib/perl5/site_perl/5.10.0/Dancer/Plugin/Database/Handle.pm line 336
The text was updated successfully, but these errors were encountered:
DBD::Oracle or rather Oracle in common doesn't have a "LIMIT" key word, so
database->quick_select
produces invalid queries!
Dancer::Plugin::Database::Handle
So the following
Produces
(DBD ERROR: error possibly near <> indicator at char 46 in 'SELECT * FROM "mytable" WHERE "id"=:p1 <>LIMIT 1') [for Statement "SELECT * FROM "mytable" WHERE "id"=? LIMIT 1"] at /usr/lib/perl5/site_perl/5.10.0/Dancer/Plugin/Database/Handle.pm line 336
The text was updated successfully, but these errors were encountered: