X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=doc%2Fref-oodml.xml;h=51cb36c80737a81d38c272f1379f1a689249593a;hb=2949884623a44f1866a383fb74a88aada9fced93;hp=094db326e23ce83d2140144294fd81326f03b30f;hpb=d0695ffb828519fade3aa5166236812e6144975b;p=clsql.git diff --git a/doc/ref-oodml.xml b/doc/ref-oodml.xml index 094db32..51cb36c 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*