From: Rafael Kitover Date: Sun, 14 Feb 2010 04:22:03 +0000 (+0000) Subject: add doc on maximum cursors for SQLAnywhere X-Git-Tag: v0.08119~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=commitdiff_plain;h=270eecac76efb586c8b231cabe1ab818a77be5aa add doc on maximum cursors for SQLAnywhere --- diff --git a/lib/DBIx/Class/Storage/DBI/SQLAnywhere.pm b/lib/DBIx/Class/Storage/DBI/SQLAnywhere.pm index 1de7706..9fd3e05 100644 --- a/lib/DBIx/Class/Storage/DBI/SQLAnywhere.pm +++ b/lib/DBIx/Class/Storage/DBI/SQLAnywhere.pm @@ -139,6 +139,19 @@ sub _svp_rollback { 1; +=head1 MAXIMUM CURSORS + +A L> application can use a lot of cursors, due to the usage of +L. + +The default cursor maximum is C<50>, which can be a bit too low. This limit can +be turned off (or increased) by the DBA by executing: + + set option max_statement_count = 0 + set option max_cursor_count = 0 + +Highly recommended. + =head1 AUTHOR See L and L.