Product Documentation

FairCom ADO.NET Driver - Developer's Guide

Previous Topic

Next Topic

Ctree.Data.SqlClient Namespace

When developing applications with the FairCom DB SQL ADO.NET Data Provider you may have to specify at least the following namespaces in your source code modules:

  • System
  • System.Data
  • Ctree.Data.SqlClient

The examples below shows how to specify the namespaces with various .NET languages.

.NET VB Example

Imports System

Imports System.Data

Imports Ctree.Data.SqlClient

.NET C# Example

using System;

using System.Data;

using Ctree.Data.SqlClient;

.NET C++ Example

using namespace System;

using namespace System::Data;

using namespace Ctree::Data::SqlClient;

.NET Delphi Example

Uses

System, System.Data, Ctree.Data.SqlClient;

TOCIndex