OQL quotes in the stitcher language

OQL statements embedded within the stitcher language (for example, within the ExecuteOQL(); statement) are enclosed in double quotes.

If quotes are needed inside the embedded OQL, they must be single quotes even if double quotes would normally be used. The following example shows an embedded OQL statement that is enclosed in double quotes. The TEXT datatype within the statement is enclosed in single quotes:

ExecuteOQL( 
        "select m_Name from finders.returns where m_Creator = 'PingFinder';"
            );

Elsewhere in the stitcher language, single quotes are generally used, as shown in the following example:

ExecuteStitcher( 'CreateAndSendTopology' );