Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

[Confluence] SQL Result Manipulation

bchi March 27, 2013

I can't seem to find this anywhere.

I am using SQL to pull data into a confluence page. I know graphs are able to manipulate this data into chart form, but I am wondering are there any other tools/methods to manipulate the sql data.

For Example - If I use SQL to pull a list of Successes and Failures, I would like to be able to highlight the successes in green / set a status macro to green / or something along that nature.

If anyone can point me in the right direction in handling a case like this, I would be most appreciative

Thanks

2 answers

1 accepted

0 votes
Answer accepted
bchi April 2, 2013

So I actually figured out this answer myself.

You are able to manipulate the SQL code to spit out macro data and Confluence will recognize the macro and run it.

Example:

select case when "Revenue" <= "Plan" then '{status:colour=red|title=Bad}'
else '{status:colour=green|title=Good}' end from products

1 vote
Bob Swift OSS (Bob Swift Atlassian Apps)
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 28, 2013

Generally, you just need to write your SQL so that it creates the correct markup to produce the results you want. For example, use a case statement to generate the appropriate emotion icon markup based on the data.

Example producing wiki markup:

select case when "Revenue" >= "Plan" then '(/)' else '(x)' end from products

bchi March 28, 2013

Yea I was thinking most of the flexability is within the SQL code. Was just wondering weather I could nicely link it with some confluence tools.

Anyway, thanks for the response!

bchi March 31, 2013

So I actually figured out this answer myself.

You are able to manipulate the SQL code to spit out macro data and Confluence will recognize the macro and run it.

Example:

select case when "Revenue" <= "Plan" then '{status:colour=red|title=Bad}'
else '{status:colour=green|title=Good}' end from products

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events