Aller au contenu principal

Cover-Logo-512x512-blue

Expert Mode

In the procedure search area you can write SQL expressions to search for the use of cover tools (procedures, actions, tables, labour,...)

image

Example:

  • I want to know all the procedures that call the ID=940 procedure (#940)
    • @id in (select owner FROM procedureNodes where [type]=5 and ref=940)
      • [type]= constant of the type of element whose use we wish to know (see tab under)
      • ref= ID of the element whose use we wish to know

image

  • I want to retrieve all procedures using a stack command that STARTS with PUSH V

    • @id in (select procedureNodes.owner from procedureNodes, procedureCommandLine where (procedureNodes.type=6) and (procedureNodes.ref = procedureCommandLine.id) AND (commandLine LIKE "PUSH V%"))
  • which contains PUSH V 0

    • @id in (select procedureNodes.owner from procedureNodes, procedureCommandLine where (procedureNodes.type=6) and (procedureNodes.ref = procedureCommandLine.id) AND (commandLine LIKE "PUSH V 0"))
  • I want to find out where a variable tree is located -@variabletree=id of the tree

    • open the windows where you can edit a variable tree
      • construction model
      • nodes
      • beams

image

  • Table of constants
ItemType (Constant)expression
itCondition0@id in (select owner FROM procedureNodes where [type]=0 and ref=ID)
itElse1@id in (select owner FROM procedureNodes where [type]=1 and ref=ID)
itMessage2@id in (select owner FROM procedureNodes where [type]=2 and ref=ID)
itAction3@id in (select owner FROM procedureNodes where [type]=3 and ref=ID)
itProcedure5@id in (select owner FROM procedureNodes where [type]=5 and ref=ID)
itCommandLine6@id in (select owner FROM procedureNodes where [type]=6 and ref=ID)
itForLoop7@id in (select owner FROM procedureNodes where [type]=7 and ref=ID)
itComment9@id in (select owner FROM procedureNodes where [type]=9 and ref=ID)
itArray10@id in (select owner FROM procedureNodes where [type]=10 and ref=ID)
itArticle11@id in (select owner FROM procedureNodes where [type]=11 and ref=ID)
itLabour12@id in (select owner FROM procedureNodes where [type]=12 and ref=ID)