Stored Procedures
Stored procedures are function-like interfaces that extend the functionality of the provider beyond simple SELECT/INSERT/UPDATE/DELETE operations with Microsoft SharePoint.
Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from Microsoft SharePoint, along with an indication of whether the procedure succeeded or failed.
CData ADO.NET Provider for Microsoft SharePoint Stored Procedures
Name | Description |
AddAttachment | Adds an attachment into a sharepoint list. |
AddList | Creates a list on a SharePoint site. |
AddListColumn | Adds a new column to the specified list. |
AddRoleAssignment | Adds a new role assignment with the specified principal and role definitions to the list, or list item. |
BreakRoleInheritance | Breaks the security inheritance of a list, or list item so that role assignments on the parent object no longer apply to the child object. |
CheckInDocument | Checks in a specific document to the document library. |
CheckOutDocument | Checks out a specific document inside the 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 | Deletes a Document from the SharePoint document library. |
DeleteList | Permanently deletes a list from a SharePoint site. |
DeleteListColumn | Deletes a column from the specified list. |
DiscardCheckOutDocument | Reverts an existing checkout for the file. |
DownloadAttachment | Downloads a document from the SharePoint list. |
DownloadDocument | Downloads a document from the SharePoint library. |
GetAdminConsentURL | Acquires 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 | Acquires the OAuth access token from SharePoint. |
GetOAuthAuthorizationURL | Acquires 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 a source folder to a destination folder. |
RefreshOAuthAccessToken | Refreshes the OAuth access token that is used for authentication with SharePoint. |
RemoveRoleAssignment | Removes the role assignment with the specified principal and role definition from the list, or list item. |
RenameAttachmentOrDocument | Renames a document or attachment. |
UploadDocument | Uploads a document into the SharePoint library. |