Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 » QAnywhere » QAnywhere Reference » QAnywhere .NET API reference » QAnywhere .NET API for clients (.NET 2.0) » QAManagerFactory class

 

CreateQATransactionalManager method

Creates a QATransactionalManager instance with the specified properties.

Syntax
Visual Basic
Public Function CreateQATransactionalManager( _
   ByVal iniFile As String _
) As QATransactionalManager
C#
public QATransactionalManager CreateQATransactionalManager(
   string  iniFile
);
Parameters
  • iniFile   Specifies the properties file to use for configuring the QATransactionalManager instance.

Return value

A newly configured QATransactionalManager instance.

Remarks

If the iniFile is null, the QATransactionalManager is created using default properties. You can use the QAManagerBase.SetProperty to set QAnywhere Manager configuration properties programmatically after you create the instance. See SetProperty method.

For a list of QAnywhere Manager configuration properties, see QAnywhere manager configuration properties.

Exceptions
See also