Comment

The CSQL Interpreter is a SQL-style method; the SQL-style comment starts with the double dashes (--) and the comment line after the double dashes is regarded as comment. Additionally, it supports C++ style, which start with double slashes (//), and C-style, which starts and ends with '/*' and '*/' respectively.

The following are examples of comments supported in the CSQL Interpreter.

Example

-- This is a SQL-style comment.

This is a C++ style comment.

/* This is a C-style comment.*/

/* This is an example to use two lines
as comment by using the C-style. */