Stored Procedures
Stored procedures are function-like interfaces that extend the functionality of the driver beyond simple SELECT/INSERT/UPDATE/DELETE operations with Microsoft SharePoint.
Stored procedures accept a list of parameters, perform their intended function, and then return, if applicable, any relevant response data from Microsoft SharePoint, along with an indication of whether the procedure succeeded or failed.
CData JDBC Driver for Microsoft SharePoint Stored Procedures
Name | Description |
AddAttachment | Add an attachment into a sharepoint list. |
CheckInDocument | Check in specific document inside document library. |
CheckOutDocument | Check out specific document inside document library. |
CopyDocument | Copies the file to the destination URL.. |
CreateFolder | Adds a folder to a document library on a SharePoint site. |
DeleteAttachment | Deletes an attachment from Sharepoint list. |
DeleteDocument | Delete a Document from the sharepoint document library. |
DiscardCheckOutDocument | Reverts an existing checkout for the file. |
DownloadAttachment | Download a document from the SharePoint list. |
DownloadDocument | Download a document from the SharePoint library. |
GetAdminConsentURL | Gets the admin consent URL that must be opened separately by an admin of a given domain to grant access to your application. Only needed when using custom OAuth credentials. |
GetCurrentUser | Retrieves information about the current logged in user. |
GetOAuthAccessToken | Gets the OAuth access token from SharePoint. |
GetOAuthAuthorizationURL | Gets the SharePoint authorization URL. Access the URL returned in the output in a Web browser. This requests the access token that can be used as part of the connection string to SharePoint. |
MoveAttachmentOrDocument | Moves a document or attachment from source folder to destination folder. |
RefreshOAuthAccessToken | Refreshes the OAuth access token used for authentication with SharePoint. |
RenameAttachmentOrDocument | Renames a document or attachment from source folder to destination folder. |
UploadDocument | Uploads a document into the SharePoint library. |