Reputation: 1
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
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