X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=doc%2Fref-syntax.xml;fp=doc%2Fref-syntax.xml;h=e0364fabd825483540f4d323de1c210d69a019dc;hp=787b4a3b08b28d1c09672447ad171a28e7286984;hb=406feeb749bb475bec8077a2716a5b6089bd9072;hpb=e41e6a54e54a32bbb3e7d359c21175465b05cd6c diff --git a/doc/ref-syntax.xml b/doc/ref-syntax.xml index 787b4a3..e0364fa 100644 --- a/doc/ref-syntax.xml +++ b/doc/ref-syntax.xml @@ -16,6 +16,12 @@ utilities for enabling and disabling the square bracket reader syntax and for constructing symbolic SQL expressions. + + Tip: just want it on + + file-enable-sql-reader-syntax at the top of each file is easiest. + + @@ -57,6 +63,12 @@ Modifies the default readtable. + + + &clsql; tries to keep track of whether the syntax has already been enabled. This can be problematic if the syntax is somehow disabled externally to &clsql; as future attempts to enable the syntax will do nothing--the system thinks it is already enabled. This may happen if there is an enable, but no disable, in a file that is processed with load or compile-file as the lisp implementation will restore the readtable on completion. Or, even if there is a disable but a compiler-error is encountered before running the disable. If you encounter this try running disable-sql-reader-syntax a couple times in the REPL. + + See file-enable-sql-reader-syntax for an alternative. + Affected by @@ -77,6 +89,7 @@ locally-enable-sql-reader-syntax locally-disable-sql-reader-syntax restore-sql-reader-syntax-state + file-enable-sql-reader-syntax @@ -151,6 +164,7 @@ locally-enable-sql-reader-syntax locally-disable-sql-reader-syntax restore-sql-reader-syntax-state + file-enable-sql-reader-syntax @@ -172,7 +186,7 @@ LOCALLY-ENABLE-SQL-READER-SYNTAX - Globally enable square bracket reader syntax. + Locally enable square bracket reader syntax. Macro @@ -210,6 +224,12 @@ Modifies the default readtable. + + + &clsql; tries to keep track of whether the syntax has already been enabled. This can be problematic if the syntax is somehow disabled externally to &clsql; as future attempts to enable the syntax will do nothing--the system thinks it is already enabled. This may happen if there is an enable, but no disable, in a file that is processed with load or compile-file as the lisp implementation will restore the readtable on completion. Or, even if there is a disable but a compiler-error is encountered before running the disable. If you encounter this try running disable-sql-reader-syntax a couple times in the REPL. + + See file-enable-sql-reader-syntax for an alternative. + Affected by @@ -228,6 +248,7 @@ disable-sql-reader-syntax locally-disable-sql-reader-syntax restore-sql-reader-syntax-state + file-enable-sql-reader-syntax @@ -310,6 +331,7 @@ disable-sql-reader-syntax locally-enable-sql-reader-syntax restore-sql-reader-syntax-state + file-enable-sql-reader-syntax @@ -394,6 +416,7 @@ disable-sql-reader-syntax locally-enable-sql-reader-syntax locally-disable-sql-reader-syntax + file-enable-sql-reader-syntax @@ -409,6 +432,80 @@ + + + FILE-ENABLE-SQL-READER-SYNTAX + + + FILE-ENABLE-SQL-READER-SYNTAX + + Enable the square bracket reader syntax for the duration of the file. + + Macro + + + Syntax + + file-enable-sql-reader-syntax => + + + Arguments and Values + None. + + + Description + Uncoditionally enables the SQL reader syntax. Unlike + enable-sql-reader-syntax and + disable-sql-reader-syntax which try to keep track of whether + the syntax has been enabled or disabled and keep track of the old read-table for restoration this function just enables it unconditionally. + + Once enabled this way there is no corresponding disable function but instead relies on being used in a file context. The spec for load and compile-file states that the *readtable* will be restored after processing the file. + + + Examples + Intended to be used at the top of a file that contains sql reader syntax. + + (in-package :my-package) + (clsql:file-enable-sql-reader-syntax) + ... + ;;functions that use the square bracket syntax. + + + + Side Effects + + Modifies the readtable for #\[ and #\] + + + + Affected by + None. + + + Exceptional Situations + + None. + + + + See Also + + enable-sql-reader-syntax + disable-sql-reader-syntax + locally-enable-sql-reader-syntax + locally-disable-sql-reader-syntax + + + + Notes + + Unique to &clsql;, not present in &commonsql;. + + + + SQL