How to use JQL for searching database in my java file?

Eva Lin November 25, 2012

Dear everyone:

The JQL can search in the 'issue' page , just like this video JQL.

But, I want to use JQL in my java file,
maybe i can call some method and give the JQL command as parameter ,
and then it will return ans to me.

Is there any API to do it?

Could you please give me sample code?

Thanks.



3 answers

1 accepted

0 votes
Answer accepted
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.
November 25, 2012

Have a look at https://developer.atlassian.com/display/JIRADEV/Plugin+Tutorial+-+JIRA+Issue+CRUD+and+Search - that explains how to use JQL in a plugin. Once you've got the basics in there, it's quite easy to extend, or reuse in other plugins.

Eva Lin November 27, 2012

Dear Nic Brough:

If I have a JQL command .

project = JRA and reporter = currentUser() and cf[10490] = xss

How can i transform it into general SQL command?

0 votes
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.
November 27, 2012

As a general principle, you can't. I could give you the SQL for that particular query, but JQL is NOT SQL and there is no simple way to translate them

To translate that directly, you'll need to read Jiraissue, project, customfield, customfieldvalue and whatever user database you are using (cwd_user if you're using internal user lists or LDAP etc)

0 votes
Eva Lin November 27, 2012

Dear Nic Brough:

If I have a JQL command .

project = JRA and reporter = currentUser() and cf[10490] = xss

How can i transform it into general SQL command?

Suggest an answer

Log in or Sign up to answer