iAnywhere.Data.UltraLite namespace
Specifies the UltraLite.NET runtime type. The runtime type must be selected before using any other UltraLite.NET API.
' Visual Basic
Public Shared Property RuntimeType As ULRuntimeType
// C#
public const ULRuntimeType RuntimeType {get;set;}
A ULRuntimeType enumeration value identifying the type of the unmanaged UltraLite.NET runtime.
The following example selects the UltraLite Engine runtime and creates a connection.
' Visual Basic ULDatabaseManager.RuntimeType = ULRuntimeType.UL_ENGINE_CLIENT Dim conn As ULConnection = new ULConnection ' The RuntimeType is now locked // C# ULDatabaseManager.RuntimeType = ULRuntimeType.UL_ENGINE_CLIENT; ULConnection conn = new ULConnection(); // The RuntimeType is now locked
SQL Anywhere Studio 9.0.2
Copyright © 1989–2004 Sybase, Inc. Portions copyright © 2001–2004 iAnywhere Solutions, Inc. All rights reserved.