Connect to Bing Search Results from PowerBuilder

Ready to get started?

Download for a free trial:

Download Now

Learn more:

Bing Search ADO.NET Provider

Easy-to-use Bing search client enables .NET-based applications to easily search Microsoft Bing and filter search results.



This article demonstrates how to access Bing Search results from PowerBuilder using the CData ADO.NET Provider for Bing Search.

The CData ADO.NET providers are easy-to-use, standards-based controls that can be used from any platform or development technology that supports Microsoft .NET, including PowerBuilder. This article shows how to use the CData ADO.NET Provider for Bing Search in PowerBuilder.

This article shows how to create a basic PowerBuilder application that uses the CData ADO.NET Provider for Bing Search to retrieve data.

  1. In a new WPF Window Application solution, add all the Visual Controls needed for the connection properties. Below is a typical connection string:

    APIKey=MyAPIKey;

    To connect to Bing, set the ApiKey connection property. To obtain the API key, sign into Microsoft Cognitive Services and register for the Bing Search APIs.

    Two API keys are then generated; select either one.

    When querying tables, the SearchTerms parameter must be supplied in the WHERE clause.

  2. Add the DataGrid control from the .NET controls.
  3. Configure the columns of the DataGrid control. Below are several columns from the Account table: <DataGrid AutoGenerateColumns="False" Margin="13,249,12,14" Name="datagrid1" TabIndex="70" ItemsSource="{Binding}"> <DataGrid.Columns> <DataGridTextColumn x:Name="idColumn" Binding="{Binding Path=Id}" Header="Id" Width="SizeToHeader" /> <DataGridTextColumn x:Name="nameColumn" Binding="{Binding Path=Title}" Header="Title" Width="SizeToHeader" /> ... </DataGrid.Columns> </DataGrid>
  4. Add a reference to the CData ADO.NET Provider for Bing Search assembly.

Connect the DataGrid

Once the visual elements have been configured, you can use standard ADO.NET objects like Connection, Command, and DataAdapter to populate a DataTable with the results of an SQL query:

System.Data.CData.Bing.BingConnection conn conn = create System.Data.CData.Bing.BingConnection(connectionString) System.Data.CData.Bing.BingCommand comm comm = create System.Data.CData.Bing.BingCommand(command, conn) System.Data.DataTable table table = create System.Data.DataTable System.Data.CData.Bing.BingDataAdapter dataAdapter dataAdapter = create System.Data.CData.Bing.BingDataAdapter(comm) dataAdapter.Fill(table) datagrid1.ItemsSource=table.DefaultView

The code above can be used to bind data from the specified query to the DataGrid.