Cmdlets for Twitter

Build 24.0.9060

Remove-Twitter Cmdlet

Parameters   Output Objects  

Deletes Twitter data.

Syntax

Remove-Twitter [parameters]

Remarks

The Remove-Twitter cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Twitter data.

$conn = Connect-Twitter
Remove-Twitter -Connection $conn -Table "Tweets" -Id "123456789"
The Where parameter can also be used to specify the primary key:
Remove-Twitter -Connection $conn -Table "exTablePowershell;" -Where "Id = 123456789"
The primary key can also be passed to the cmdlet along the pipeline:
Select-Twitter -Connection $conn -Table Tweets -Where "From_User_Name = 'twitter'" | Remove-Twitter

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 24.0.9060