Name

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

Syntax

      locally-disable-sql-reader-syntax => 

Arguments and Values

None.

Description

Turns off the SQL reader syntax without changing the syntax state such that restore-sql-reader-syntax-state will re-establish the current syntax state.

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.

See Also

enable-sql-reader-syntax
disable-sql-reader-syntax
locally-enable-sql-reader-syntax
restore-sql-reader-syntax-state
file-enable-sql-reader-syntax

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.