Hi All,
We have few teams who are directly connecting to JIRA DB as read access through perl and running SQL queries.
Due to DB structure change SQL queries are failing and causing issue.
To avoid such situations we need users to use JQL but we are not sure how to use JQL from perl code.
For sample we are using below code
{code}
my $sth_use = $dbh->prepare("use jira"); $sth_use->execute(); my $sqlCmd = "select ji.issuenum, ji.SUMMARY, ji.ASSIGNEE from jiraissue ji, project p, nodeassociation n, projectversion pv where ji.issuestatus in ($gestatus) and ji.project = p.ID and p.pname = 'Projectname' and ji.id = n.SOURCE_NODE_ID and n.ASSOCIATION_TYPE='IssueFixVersion' and n.SINK_NODE_ID = pv.id and pv.vname in ('${fixVersion}', '$filterFixVersion', '$prebau') ${xj}"; jvcTrace("$sqlCmd\n"); my $sth = $dbh->prepare($sqlCmd); $sth->execute();
{code}
Thanks and Regards,
Pankaj
You and use JIRA Command Line Interface (CLI) and run the getIssueList command from perl. Use the jql parameter.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.