Name

Function SQL-OPERATOR — Returns the symbol for the supplied SQL operator.

Function

Syntax

      sql-operator operator => result

Arguments and Values

operator

A symbol denoting an SQL operator.

result

The Lisp symbol used by CLSQL to represent the specified operator.

Description

Returns the Lisp symbol corresponding to the SQL operator represented by the symbol operator. If operator does not represent a supported SQL operator or is not a symbol, nil is returned.

Examples

(sql-operator 'like)
=> SQL-LIKE
      

Side Effects

None.

Affected by

None.

Exceptional Situations

None.