Previous Topic

Next Topic

Ctree.Data.SqlClient Namespace

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

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;