Name

Macro LOCALLY-DISABLE-SQL-READER-SYNTAX — Locally disable square bracket reader syntax.

Macro

Syntax

      locally-disable-sql-reader-syntax => 

Arguments and Values

None.

Examples

Intended to be used in a file for code in which the square bracket syntax should be disabled without changing the global state.

        #.(locally-disable-sql-reader-syntax) 
        
        ... CODE NOT USING SYMBOLIC SQL SYNTAX ... 
        
        #.(restore-sql-reader-syntax-state) 
      

Side Effects

Modifies the default readtable.

Affected by

None.

Exceptional Situations

None.

Notes

The symbolic SQL syntax is disabled by default.

CLSQL differs from CommonSQL in that locally-disable-sql-reader-syntax is defined as a macro rather than a function.