Hi,
I have a customfield: "Project ID"
I want to ask external database for information basing on Project ID
How do I do this.
I have Database Custom Field plugin installed.
I want to display just one field, like the info from table but just one information, not whole table.
I have a customfield XXXX (customfield_10400)
And a table in sql like below (added for testing purposes)
Configuration of customfield on the seccond photo.
What am i doing wrong?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Guys,
I am using Database Custom Fields 4.0
How do I configure just displaying information based on seccond customfield?
Now I can only select from this field when editing, but I just want to display it when viewing the issue - is this possible?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @jan Sekara
select cfname,FIELDTYPE,DESCRIPTION from customfield where cfname ='Project ID'
Try this
to get basic details of custom field name
Thanks
Chander
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In our circumstance, we've done this and we've used the format:
select * from my_table where {customfield_10172} = 'my_value';
Where the 10172 is the id of that customfield instead of using the name.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
OK, didn't realised that it works linke that. Thanks. So i guess you may change my_value to database field in external db.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.