File - Delete
Permanently delete a Google Drive file using SQL Server
- See SQLHTTP easy setup for Google
- See API Call documentation for parameter values and other information
- Create the stored procedure documented below
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
CREATE PROCEDURE usp_Google_File_Delete( @Profile nvarchar(100), @fileId nvarchar(MAX), @supportsTeamDrives bit = 0, @Response nvarchar(MAX) OUTPUT, @StatusCode int OUTPUT, @StatusDescription nvarchar(MAX) OUTPUT) AS DECLARE @Text_supportsTeamDrives varchar(5) SET @Text_supportsTeamDrives = CASE WHEN @supportsTeamDrives = 0 THEN 'false' ELSE 'true' END DECLARE @URL nvarchar(MAX) DECLARE @QueryString nvarchar(MAX) DECLARE @HTTPSessionID uniqueidentifier SET @URL = 'https://www.googleapis.com/drive/v2' EXEC SQLHTTP.net.UrlBuilder @URL OUTPUT, @Profile, 'files', @fileId EXEC SQLHTTP.net.QueryStringBuilder @QueryString OUTPUT, @Profile, 'supportsTeamDrives', @Text_supportsTeamDrives SET @URL = @URL + @QueryString EXEC SQLHTTP.net.HTTPSession @HTTPSessionID OUTPUT EXEC usp_Google_Auth_Header @Profile, @HTTPSessionID EXEC SQLHTTP.net.HTTPRequest @HttpSessionID, @URL = @URL, @Method = 'DELETE', @ContentType = 'application/json', @StatusCode = @StatusCode OUTPUT, @StatusDescription = @StatusDescription OUTPUT, @Response = @Response OUTPUT GO |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
DECLARE @Response nvarchar(MAX) DECLARE @StatusCode int DECLARE @StatusDescription nvarchar(MAX) DECLARE @Profile nvarchar(100) SET @Profile = 'My google' --Google API Bearer Token expires after an hour EXEC usp_Google_Auth_Refresh @Profile EXEC usp_Google_File_Delete @Profile = @Profile, @fileId = '1h3tJBOHdKup7AZlmZ0FwFgW1QaDweDDkGTZmOXUyU_I', @Response = @Response OUTPUT, @StatusCode = @StatusCode OUTPUT, @StatusDescription = @StatusDescription OUTPUT SELECT @StatusCode AS StatusCode, @StatusDescription AS StatusDescription |
1 2 3 4 5 |
StatusCode StatusDescription ----------- ------------------- 204 No Content |
- About – Fetch
- App – Fetch
- Apps – Fetch
- Change – Fetch
- Changes – Fetch
- Child File – Create
- Child File – Fetch
- Child File – Remove
- Children Files – Fetch
- Comment – Create
- Comment – Delete
- Comment – Fetch
- Comment – Update
- Comments – Fetch
- File – Copy
- File – Delete
- File – Fetch
- File – Patch
- File – Touch
- File – Trash
- File – Untrash
- Files – Fetch
- Parent Folder – Create
- Parent Folder – Fetch
- Parent Folder – Remove
- Parent Folders – Fetch
- Permission – Create
- Permission – Delete
- Permission – Fetch
- Permission – Patch
- Permission – Update
- Permission ID – Fetch
- Permissions – Fetch
- Properties – Fetch
- Property – Create
- Property – Delete
- Property – Fetch
- Property – Update
- Replies – Fetch
- Reply – Create
- Reply – Delete
- Reply – Fetch
- Reply – Update
- Revision – Delete
- Revision – Fetch
- Revision – Update
- Revisions – Fetch
- Start Page Token – Fetch
- Trashed Files – Delete
IMPORTANT DISCLAIMER
CODE/SQL ON THESE PAGES ARE PROVIDED AS-IS AND ARE AVAILABLE FOR ILLUSTRATIVE PURPOSES ONLY.
USERS ARE REQUIRED TO ABIDE BY THE TERMS AND CONDITIONS FOR USING REFERENCED THIRD PARTY WEBSITES AND/OR APIs FROM THEIR RESPECTIVE WEBSITES. WE DO NOT CONDONE ANY VIOLATION OF THIRD PARTY WEBSITES AND/OR APIs TERMS AND CONDITIONS USING OUR SOFTWARE.
USERS SHALL BE SOLELY RESPONSIBLE AND BE SOLELY LIABLE FOR VIOLATION OF ANY RULES SPECIFIED BY THIRD PARTIES FOR USING THEIR WEBSITES AND/OR APIs, OR INFRINGEMENT OF RIGHTS OF SUCH THIRD PARTIES.