Stored Procedures
Stored procedures are function-like interfaces that extend the functionality of the provider 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 ADO.NET Provider for Jira Stored Procedures
| Name | Description |
| ArchiveIssues | Archive issue(s) by issue ID/key. |
| ArchiveIssuesJQL | Archive issues using JQL. |
| AssignPermissionScheme | Assign a permission scheme to a project. |
| ChangeIssueStatus | Perform a status transition on a specific issue. |
| CreateArchivedIssuesExport | Retrieves details of all archived issues and emails the admin user a download link for a CSV file. |
| 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. |
| UnarchiveIssues | Unarchive issue(s) by issue ID/key. |
| UploadAttachment | Upload an attachment to a specific Issue. |