X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=doc%2Fref-oodml.xml;h=a76b718b3bbf5a87ce7531d97620e063984b5ba2;hp=094db326e23ce83d2140144294fd81326f03b30f;hb=14127ceb7cfff2710abd123444c7025c2e18e7fa;hpb=2961f4f122593e9d4875e88e6af159de28c8dd47 diff --git a/doc/ref-oodml.xml b/doc/ref-oodml.xml index 094db32..a76b718 100644 --- a/doc/ref-oodml.xml +++ b/doc/ref-oodml.xml @@ -124,6 +124,57 @@ + + + *DEFAULT-CACHING* + Controls the default caching behavior. + Variable + + + Value Type + + Boolean + + + + Initial Value + &t; + + + Description + + This variable stores the default value of the + CACHING keyword for the select. + + + + Examples + + (let ((*default-caching* nil))) + (select 'foo)) + + ;; is equivalent to + + (select 'foo :caching nil) + + + + Affected By + None. + + + See Also + + select + + + + Notes This is a CLSQL extension to the + &commonsql; API. &commonsql; has caching on at all times. + + + *DEFAULT-UPDATE-OBJECTS-MAX-LEN*