SQL query returning null result when used in SIL runner gadget

Krithica Gowri Shankar March 22, 2017

Hi,

We are using below script and running it in the sil runner gadget. But we are not getting any result.

string [] results = sql("jdbc/JiraDS", "select id from customfield;");
return results;

image2017-3-23 15:20:1.png

We need to get all the custom fields from the JIRA table.

1 answer

1 vote
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 23, 2017

Reading the database is generally the wrong way to do things in JIRA, but...

The empty result could be a genuine case of "no custom fields defined yet" - won't be true if you have Software or Service Desk, but if it's a plain Core install, it could be.  What does the GUI say is there?

If there are fields in there, then it's the connection - it's either not running the query at all, or it's unable to connect.  You'll need to check the login parameters etc.

Suggest an answer

Log in or Sign up to answer