Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This article explains how to use SQL for Confluence with Run Self Service Reports to display dynamic content on a page.

Instructions

  1. For dynamic value substitution, you need to use $ with the field name. Write a SQL Insert SQL macro in a Confluence page and write a SELECT statement in the SQL macro settings as shown below:

    Code Block
    themeMidnight
    Select CREATOR,CREATIONDATE from SPACES WHERE SPACEID='$Space Id' AND SPACEKEY='$Space Key';
    Add the above query inside a run


    Info

     For dynamic value substitution, you need to use $ with the field name. 


  2. Insert another macro: Run with a user form and parameters macro and provide and add the above SQL macro inside this Run macro.
    Image Added
  3. Provide field values for the form by editing the run Run macro as shown below screenshot:

    Image Removed
  4. Provide the values for the fields as shown below and click on run button and result of the macro with get displayed. 
    Image Removed:
    Image Added
  5. Click Run to display the results.


Info

This example is from the SQL Server database.

...