Billy Mays Cyrus
Billy Mays Cyrus

Reputation: 1

How do you call Progress Openedge .p files from C# using the ODBC driver?

Is there one way or another to have a .p procedure run through a .Net/C# application using the ODBC driver?

Upvotes: 0

Views: 457

Answers (1)

Tom Bascom
Tom Bascom

Reputation: 14020

No.

The ODBC driver connects to the database via SQL, bypassing the 4gl.

If you need to execute 4gl .p programs from a .net or C# program you would want to call an app server. In really old releases that might be via “open client” or a SOAP service. In newer releases that might be exposed as a REST service.

Upvotes: 3

Related Questions