Discover how a bimodal integration strategy can address the major data management challenges facing your organization today.
Get the Report →Automate Cloudant Integration Tasks from PowerShell
Are you in search of a quick and easy way to access Cloudant data from PowerShell? This article demonstrates how to utilize the Cloudant Cmdlets for tasks like connecting to Cloudant data, automating operations, downloading data, and more.
The CData Cmdlets for Cloudant are standard PowerShell cmdlets that make it easy to accomplish data cleansing, normalization, backup, and other integration tasks by enabling real-time and bidirectional access to Cloudant.
PowerShell Cmdlets or ADO.NET Provider?
The Cmdlets are not only a PowerShell interface to Cloudant, but also an SQL interface; this tutorial shows how to use both to create, retrieve, update, and delete Cloudant data. We also show examples of the ADO.NET equivalent, which is possible with the CData ADO.NET Provider for IBM Cloudant. To access Cloudant data from other .NET applications, like LINQPad, use the CData ADO.NET Provider for IBM Cloudant.
Once you have acquired the necessary connection properties, accessing Cloudant data in PowerShell can be enabled in three steps.
Set the following connection properties to connect to Cloudant:
- User: Set this to your username.
- Password: Set this to your password.
PowerShell
-
Install the module:
Install-Module CloudantCmdlets
-
Connect:
$cloudant = Connect-Cloudant -User "$User" -Password "$Password"
-
Search for and retrieve data:
$movierating = "R" $movies = Select-Cloudant -Connection $cloudant -Table "Movies" -Where "MovieRating = `'$MovieRating`'" $movies
You can also use the Invoke-Cloudant cmdlet to execute SQL commands:
$movies = Invoke-Cloudant -Connection $cloudant -Query 'SELECT * FROM Movies WHERE MovieRating = @MovieRating' -Params @{'@MovieRating'='R'}
ADO.NET
-
Load the provider's assembly:
[Reflection.Assembly]::LoadFile("C:\Program Files\CData\CData ADO.NET Provider for IBM Cloudant\lib\System.Data.CData.Cloudant.dll")
-
Connect to Cloudant:
$conn= New-Object System.Data.CData.Cloudant.CloudantConnection("User=abc123; Password=abcdef;") $conn.Open()
-
Instantiate the CloudantDataAdapter, execute an SQL query, and output the results:
$sql="SELECT MovieRuntime, MovieRating from Movies" $da= New-Object System.Data.CData.Cloudant.CloudantDataAdapter($sql, $conn) $dt= New-Object System.Data.DataTable $da.Fill($dt) $dt.Rows | foreach { Write-Host $_.movieruntime $_.movierating }
Update Cloudant Data
PowerShell
Update-Cloudant -Connection $Cloudant -Columns @('MovieRuntime','MovieRating') -Values @('MyMovieRuntime', 'MyMovieRating') -Table Movies -Id "MyId"
ADO.NET
$cmd = New-Object System.Data.CData.Cloudant.CloudantCommand("UPDATE Movies SET MovieRating='R' WHERE Id = @myId", $conn)
$cmd.Parameters.Add((New-Object System.Data.CData.Cloudant.CloudantParameter("@myId","10456255-0015501366")))
$cmd.ExecuteNonQuery()
Insert Cloudant Data
PowerShell
Add-Cloudant -Connection $Cloudant -Table Movies -Columns @("MovieRuntime", "MovieRating") -Values @("MyMovieRuntime", "MyMovieRating")
ADO.NET
$cmd = New-Object System.Data.CData.Cloudant.CloudantCommand("INSERT INTO Movies (MovieRating) VALUES (@myMovieRating)", $conn)
$cmd.Parameters.Add((New-Object System.Data.CData.Cloudant.CloudantParameter("@myMovieRating","R")))
$cmd.ExecuteNonQuery()
Delete Cloudant Data
PowerShell
Remove-Cloudant -Connection $Cloudant -Table "Movies" -Id "MyId"
ADO.NET
$cmd = New-Object System.Data.CData.Cloudant.CloudantCommand("DELETE FROM Movies WHERE Id=@myId", $conn)
$cmd.Parameters.Add((New-Object System.Data.CData.Cloudant.CloudantParameter("@myId","001d000000YBRseAAH")))
$cmd.ExecuteNonQuery()
CodeProject