Table of Contents

Search

  1. Preface
  2. Introduction
  3. Program Design
  4. SSA-NAME3 Functions
  5. Language Specific Guidelines
  6. Controls
  7. Advanced Controls
  8. Address Standardization
  9. ASM Workbench

SSA-NAME3 API Reference Guide

SSA-NAME3 API Reference Guide

Compilation and linking

Compilation and linking

C# programs should call the SSA-NAME3 DLL as shown in the sample program.
  • To uninstall the dll, run the command,
    gacutil /u ssan3cs
    You don’t need to do this unless you are installing a new version.
  • To install the dll, run the command,
    gacutil /i c:\InformaticaIR\bin\ssan3cs.dll
    You can also achieve this by dragging the dll into
    <WindowsDir>\ Assembly
    • Compile:
      csc /reference:%SSABIN%\ssan3cs.dll sample.cs
    • Execute:
      sample

Coding the ssan3_close Call outside of the Finalize() Method

Calling the
ssan3_close
method from a
Finalize()
method is not recommended. This is because it delays the call to
ssan3_close
until the runtime runs garbage collection on the released object, which can be any time after the object has been released by the program.
Instead, it is recommended that the user implement a public cleanup or close method that performs the necessary housekeeping, including a call to
ssan3_close
to release open sessions prior to releasing the object.

Exceptions

All methods throw exceptions of type
SSAN3Exception
.

Common Parameters

Common parameters are accessible as class members.

0 COMMENTS

We’d like to hear from you!