You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Comparing the OpenEdge BasicQuery implementation to the C# version, some things are omitted that don't make this a fair comparison.
In the .p the database connection is implied, meaning it either happened through startup parameters or other code not shown here (since the connection needs to be made outside this .p).
No error handling in the .p. Records might be locked. At least some code to anticipate this could be added instead of using the very optimistic "share-lock" default. The C# code has try/catch blocks, so the .p should as well, or at least have some IF LOCKED logic.
The text was updated successfully, but these errors were encountered:
Comparing the OpenEdge BasicQuery implementation to the C# version, some things are omitted that don't make this a fair comparison.
The text was updated successfully, but these errors were encountered: