(index ("ssql->sql" 0))
(def (sig (procedure "(ssql->sql connection ssql)" (id ssql->sql))) (p "Transforms the SSQL code (represented as list) into the SQL query (represented as string). If connection is given, it will be used to escape strings in the query. #f can be passed to the connection parameter.") (highlight scheme "(ssql->sql #f '(select (columns id title author) (from books)))"))
