Cmdlets for HarperDB

Build 23.0.8839

Update-HarperDB Cmdlet

Parameters   Output Objects  

Updates HarperDB data.

Syntax

Update-HarperDB [parameters]

Remarks

The Update-HarperDB cmdlet allows you to use a syntax similar to SQL UPDATE statements to update HarperDB data.

$conn = Connect-HarperDB -Server '127.0.0.1' -Port 9925
Update-HarperDB -Connection $conn -Table "[HarperDB].[cstest].Cutomers" -Columns @("CompanyName") -Values @("Jon Deere") -Id "22"
The Where parameter can also be used to specify the primary key of the table:
Update-HarperDB -Connection $conn -Table "[HarperDB].[cstest].Cutomers" -Columns @("CompanyName") -Values @("Jon Deere") -Where "_id = '22'"
The primary key can also be passed to the cmdlet along the pipeline:
Select-HarperDB -Connection $conn -Table [HarperDB].[cstest].Cutomers -Where "Country = 'US'" | Update-HarperDB -Columns @("Country") -Values @("US 2")

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