Showing 2 changed files with 13 additions and 2 deletions
+1 -1
Changes
... ...
@@ -1,5 +1,5 @@
1 1
 0.1610
2
-  added check_filter attribute.
2
+  added filter_check attribute.
3 3
 0.1609
4 4
   updated document.
5 5
 0.1608
+12 -1
lib/DBIx/Custom.pm
... ...
@@ -489,7 +489,7 @@ DBIx::Custom - DBI interface, having hash parameter binding and filtering system
489 489
 
490 490
 =cut
491 491
 
492
-our $VERSION = '0.1609';
492
+our $VERSION = '0.1610';
493 493
 
494 494
 =head1 STABILITY
495 495
 
... ...
@@ -977,6 +977,15 @@ In fetch filter, column name must be lower case even if column conatain upper ca
977 977
 
978 978
 =head2 6. Performance
979 979
 
980
+=head3 Disable filter checking
981
+
982
+C<filter_check> is 1 by defaut. This is useful in debug.
983
+
984
+This filter check maybe damege performance.
985
+If you require performance, set C<filter_check> to 0.
986
+
987
+=head3 Using execute() method instead suger methods
988
+
980 989
 If you execute insert statement by using select() method,
981 990
 you sometimes can't meet performance requirment.
982 991
 
... ...
@@ -1007,6 +1016,8 @@ Execute query repeatedly
1007 1016
 
1008 1017
 This is faster than C<insert()> and C<update()> method.
1009 1018
 
1019
+=head2 caching
1020
+
1010 1021
 C<execute()> method cache the parsing result of SQL soruce.
1011 1022
 Default to 1
1012 1023