Namespace requirements
The namespace for the HCL® OneDB® .NET Core Provider is: Informix.Net.Core. This means that the full name of the objects in the OneDB .NET Core Provider all begin with Informix.Net.Core.
For example, the full name of IfxConnection is Informix.Net.Core.IfxConnection.
To avoid having to enter the entire namespace for each of the objects you can import the
namespace. The exact way that you do this depends on your programming language. The C# language
uses the keyword
using
. If you are programming in C#, you can reference the
namespace by including this line at the start of your
module:using Informix.Net.Core;