Ndapi 13.0.0

dotnet add package Ndapi --version 13.0.0
NuGet\Install-Package Ndapi -Version 13.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Ndapi" Version="13.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Ndapi --version 13.0.0
#r "nuget: Ndapi, 13.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Ndapi as a Cake Addin
#addin nuget:?package=Ndapi&version=13.0.0

// Install Ndapi as a Cake Tool
#tool nuget:?package=Ndapi&version=13.0.0

Ndapi

Build

Oracle Forms includes an API that enables C/C++ developers to create, load, edit, save, and compile Oracle Forms modules (.fmb, .mmb, .olb and .pll files). It gives access to almost all the Forms Builder functionality.

Oracle Forms also includes a Java API (JDAPI) that wraps the Open API functionality and offers a complete API to Java developers. But the API is a bit verbose because it doesn't have any support for generics nor iterators.

A Java sample code with JDAPI looks like:

FormModule module = FormModule.open(sourceFileName);
JdapiIterator programUnits = module.getProgramUnits();
while (programUnits.hasNext()) {
    ProgramUnit programUnit = (ProgramUnit)programUnits.next();
    String name = programUnit.getName();
    // ...
}

The objective of this project is to implement a fully featured .NET wrapper for Oracle Forms Open API, providing a more idiomatic API for .NET developers.

So, the same code with Ndapi would be:

var module = FormModule.Open(sourceFileName);
foreach (var programUnit in module.ProgramUnits)
{
    var name = programUnit.Name;
    // ...
}

Supported Oracle Forms versions

Currently this projects is tested with Forms 6.0.8.22.1 (32-bit) and Forms 12.2.1.3, 12.2.1.4 and 12.2.1.19 (64-bit).

Installing

Official releases can be obtained using the NuGet package.

To integrate with Forms 6i your application must target the platform x86. To integrate with Forms 12c your application must target the platform x64.

To get the development builds use https://github.com/felipebz/ndapi/pkgs/nuget/Ndapi.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
13.0.0 85 2/4/2024
12.2.1.33 204 11/8/2023
12.2.1.3 1,201 4/26/2018
6.0.8.2 80 11/8/2023
6.0.8.1 1,046 5/2/2018
6.0.8 1,033 4/26/2018
1.0.0 1,175 1/23/2016
1.0.0-beta1-0121 1,037 5/16/2015
1.0.0-alpha2-0100 1,242 2/24/2015
1.0.0-alpha1-0087 1,171 2/23/2015