[]
The ADO.NET provider for ServiceNow provides a wide range of features that enable connectivity to ServiceNow from .Net applications. The documentation will help you understand the C1.AdoNet.ServiceNow namespace, which includes all the available classes that can be used to connect and retrieve data from a ServiceNow service.
DataConnectors are mostly used in combination with other ComponentOne components, such as DataEngine and FlexPivot. The procedure below describes how to use the DataConnector in a console application within Visual Studio.
The ADO.NET provider for ServiceNow can be used in any application. In this guide, a console application is created:
Follow the steps provided below to learn and implement data retrieval using the ADO.NET provider for ServiceNow.
Create a connection string to set up a connection to a local resource by setting the properties.
//Define connection string
string connectionString = @"Username= yourusername; Password= yourpassword; Oauth Client Id= yourid;
Oauth Client Secret= yoursecretcode; Oauth Token Endpoint= http://****/****/****; Url= http://****/****/****";
Fetch the data using C1ServiceNowConnection class. The connection string using corresponding attributes is passed as an argument. For more information on creating connections, see Creating Connection.
C1ServiceNowConnection implements the ADO.NET DbConnection, similar to standard ADO.NET connection object that retrieves a single result set of all the data that matches a query. Once the connection is established, it retrieves the data from the source as shown in the following code example.
using (C1ServiceNowConnection conn = new C1ServiceNowConnection(connectionString))
{
//Populate DataTable
C1ServiceNowDataAdapter adapter = new C1ServiceNowDataAdapter(conn, "Select caller_id, category, description, close_code from incident");
DataTable dataTable = new DataTable();
var i = adapter.Fill(dataTable);
if (i != -1)
{
//Display fetched data
foreach (DataRow row in dataTable.Rows)
{
Console.WriteLine("CallerId:{0}", row["caller_id"]);
Console.WriteLine("Category:{0}", row["category"]);
Console.WriteLine("Description:{0}", row["description"]);
Console.WriteLine("CloseCode:{0}", row["close_code"]);
Console.WriteLine("\n");
}
Console.WriteLine("Read operation successful !!! \n \n");
}
}
The following output is generated on the console application on executing the above steps.