![]() |
VOOZH | about |
The CData Cmdlets for OData 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 OData.
CData simplifies access and integration of live OData services data. Our customers leverage CData connectivity to:
Customers use CData's solutions to regularly integrate their OData services with preferred tools, such as Power BI, MicroStrategy, or Tableau, and to replicate data from OData services to their databases or data warehouses.
The Cmdlets are not only a PowerShell interface to OData, but also an SQL interface; this tutorial shows how to use both to create, retrieve, update, and delete OData services. We also show examples of the ADO.NET equivalent, which is possible with the CData ADO.NET Provider for OData. To access OData services from other .NET applications, like LINQPad, use the CData ADO.NET Provider for OData.
Once you have acquired the necessary connection properties, accessing OData services in PowerShell can be enabled in three steps.
The User and Password properties, under the Authentication section, must be set to valid OData user credentials. In addition, specify a URL to a valid OData server organization root or OData services file.
Install the module:
Install-Module ODataCmdlets
Connect:
$odata = Connect-OData -URL "$URL" -UseIdUrl "$UseIdUrl" -OData Version "$OData Version" -Data Format "$Data Format"
Search for and retrieve data:
$shipcity = "New York" $orders = Select-OData -Connection $odata -Table "Orders" -Where "ShipCity = `'$ShipCity`'" $orders
You can also use the Invoke-OData cmdlet to execute SQL commands:
$orders = Invoke-OData -Connection $odata -Query 'SELECT * FROM Orders WHERE ShipCity = @ShipCity' -Params @{'@ShipCity'='New York'}
Load the provider's assembly:
[Reflection.Assembly]::LoadFile("C:\Program Files\CData\CData ADO.NET Provider for OData\lib\System.Data.CData.OData.dll")
Connect to OData:
$conn= New-Object System.Data.CData.OData.ODataConnection("URL=http://services.odata.org/V4/Northwind/Northwind.svc;UseIdUrl=True;OData Version=4.0;Data Format=ATOM;")
$conn.Open()
Instantiate the ODataDataAdapter, execute an SQL query, and output the results:
$sql="SELECT OrderName, Freight from Orders"
$da= New-Object System.Data.CData.OData.ODataDataAdapter($sql, $conn)
$dt= New-Object System.Data.DataTable
$da.Fill($dt)
$dt.Rows | foreach {
Write-Host $_.ordername $_.freight
}
Update-OData -Connection $OData -Columns @('OrderName','Freight') -Values @('MyOrderName', 'MyFreight') -Table Orders -Id "MyId"
$cmd = New-Object System.Data.CData.OData.ODataCommand("UPDATE Orders SET ShipCity='New York' WHERE Id = @myId", $conn)
$cmd.Parameters.Add((New-Object System.Data.CData.OData.ODataParameter("@myId","10456255-0015501366")))
$cmd.ExecuteNonQuery()
Add-OData -Connection $OData -Table Orders -Columns @("OrderName", "Freight") -Values @("MyOrderName", "MyFreight")
$cmd = New-Object System.Data.CData.OData.ODataCommand("INSERT INTO Orders (ShipCity) VALUES (@myShipCity)", $conn)
$cmd.Parameters.Add((New-Object System.Data.CData.OData.ODataParameter("@myShipCity","New York")))
$cmd.ExecuteNonQuery()
Remove-OData -Connection $OData -Table "Orders" -Id "MyId"
$cmd = New-Object System.Data.CData.OData.ODataCommand("DELETE FROM Orders WHERE Id=@myId", $conn)
$cmd.Parameters.Add((New-Object System.Data.CData.OData.ODataParameter("@myId","001d000000YBRseAAH")))
$cmd.ExecuteNonQuery()
CodeProject
Download a free trial of the OData Data Provider to get started:
Download NowLearn more:
👁 OData IconEasy-to-use OData client (consumer) enables developers to build .NET applications that easily communicate with OData services.