Stored Procedures
Stored procedures are function-like interfaces that extend the functionality of the driver beyond simple SELECT/INSERT/UPDATE/DELETE operations with Jira.
Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from Jira, along with an indication of whether the procedure succeeded or failed.
CData JDBC Driver for Jira Stored Procedures
Name | Description |
ChangeIssueStatus | Perform a status transition on a specific issue. |
CreateCustomField | Use this stored procedure to create a new custom field. |
CreateSchema | Creates a schema file for the specified table or view. |
DownloadAttachment | Download attachment by specifying its Id. |
GetOAuthAccessToken | Gets an authentication token from Jira. |
GetOAuthAuthorizationURL | Gets the authorization URL that must be opened separately by the user to grant access to your application. Only needed when developing Web apps. You will request the auth token from this URL. |
GetTimeTrackingSettings | Sets the time tracking settings. |
RefreshOAuthAccessToken | Refreshes the OAuth access token used for authentication with Jira service. |
SelectTimeTrackingProvider | Selects a time tracking provider. |
SetTimeTrackingSettings | Sets the time tracking settings. |
UploadAttachment | Upload an attachment to a specific Issue. |