more improvements / fixes in documentation
Laurent Dami [Fri, 17 Oct 2008 13:07:41 +0000 (13:07 +0000)]
lib/SQL/Abstract.pm

index 3bb452c..4b83400 100644 (file)
@@ -1713,8 +1713,8 @@ SQL statements:
          -and => [
             user => 'nwiger',
             -nest => [
-                -and => [workhrs => {'>', 20}, geo => 'ASIA' ],
-                -and => [workhrs => {'<', 50}, geo => 'EURO' ]
+                ["-and", workhrs => {'>', 20}, geo => 'ASIA' ],
+                ["-and", workhrs => {'<', 50}, geo => 'EURO' ]
             ],
         ],
     );
@@ -1782,7 +1782,7 @@ in Postgres you can use something like this:
 
 This would create:
 
-    $stmt = "WHERE ( date_column = date \'2008-09-30\' - ?::integer )"
+    $stmt = "WHERE ( date_column = date '2008-09-30' - ?::integer )"
     @bind = ('10');
 
 
@@ -2039,6 +2039,8 @@ to clarify the semantics. Hence, client code that was relying
 on some dark areas of C<SQL::Abstract> v1.* 
 B<might behave differently> in v1.50.
 
+The main changes are :
+
 =over
 
 =item *