Jira Database Values plugin: how to use in API JQL?

Yves Berquin December 1, 2013

I have a Jira 6.1 install with the Database Values Plugin v 3.0
I create a field (# 10190, name CustomerDB) which gets additional info from another DB.
I'm trying to use this as part of a REST API query.
It works well in the fields selection: I can add &fields=customfield_10190 to have it in the produced fields. But I can't make it work in the jql itself.

I tried:

  • /rest/api/latest/search?jql=CustomerDB="36"
    • (this doesn't return any result, although it should)
  • /rest/api/latest/search?jql=CustomerDB in dbValuesMatching("CustomerDB","847")&fields=customfield_10190
    • "The query reference 'CustomerDB' does not exist. Possible values are: []"

Here's the properties file:

database.driver=net.sourceforge.jtds.jdbc.Driver
database.user=...
database.password=...
database.connection.url=jdbc:jtds:sqlserver:....
cache.timeout=1
sql.query=select SERNUM, CUSTNAME, CUSTDES, SERN from dbo.SERNUMBERS LEFT JOIN CUSTOMERS ON SERNUMBERS.CUST=CUSTOMERS.CUST WHERE PART=5 ORDER BY SERNUM;
primarykey.column.number=3
rendering.viewpattern={0} (Customer {1} - {2})
rendering.editpattern={0} (Customer {1} - {2})
rendering.searchpattern={0} (Customer {1} - {2})
edit.type=0
search.type=0
jq1.1.query.reference=CustomerDB
jql.1.query=select SERNUM from dbo.SERNUMBERS WHERE SERN='QUERY_VALUE';

Any clue?

Thanks

2 answers

1 accepted

1 vote
Answer accepted
Yves Berquin December 25, 2013

The plugin makes it so that there's apparently no way you can query any database field. You can only use the primary key of the DB like this:

/rest/api/2/search?jql=CustomerDB=23&fields=...

0 votes
Wim Deblauwe
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.
December 26, 2013

Does the JQL work if you type it in JIRA itself ? If not, then try to get that working first.

Suggest an answer

Log in or Sign up to answer