------------------------ Alternate String Quoting ------------------------ Support for alternate format of strings literals. Author: Adriano dos Santos Fernandes Syntax: ::= { q | Q } [ { }... ] Syntax rules: When is '(', '{', '[' or '<', is respectively ')', '}', ']' and '>'. In other cases, is equal to . Notes: Inside the string, i.e., items, single (not escaped) quotes could be used. Each quote will be part of the result string. Examples: select q'{abc{def}ghi}' from rdb$database; -- result: abc{def}ghi select q'!That's a string!' from rdb$database; -- result: That's a string