DataAction / AdoNetCore.AseClient

AdoNetCore.AseClient - a .NET Core DB Provider for SAP ASE
Apache License 2.0
108 stars 45 forks source link

Support NamedParameters = false #13

Closed c-j-hughes closed 6 years ago

c-j-hughes commented 6 years ago

SAPs AseClient allows AseCommands to be executed like the following:

We support the latter syntax, but not the former.

To place the AseCommand in the former mode, either it or the owning AseConnection can have their NamedParameters property set to false.

We should add this support.

senseibaka commented 6 years ago

The .net 4 driver parses the input sql and replaces ? entries with named parameters following the scheme @dr_ta[index]

Appears to be support for the return value in exec ?=stored_procedure_name