Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maxlen(1) less than maxlen(2) when execute procedure with decimal output parameter #220

Open
sky196 opened this issue Dec 24, 2021 · 1 comment

Comments

@sky196
Copy link

sky196 commented Dec 24, 2021

Describe the bug
Maxlen(1) less than maxlen(2) when execute procedure with decimal output parameter

To Reproduce
Please provide C#/SQL necessary to reproduce the issue, and steps to follow:

this is code segment
var cmd = connection.CreateCommand();
cmd.CommandType=CommandType.StoredProcedure;
cmd.CommandText = "sp_dec_test";

var p = cmd.CreateParameter();
p.ParameterName="@Outp";
p.Direction=ParameterDirection.InputOutput;
p.Value=1;
p.AseDbType=AseDbType.Decimal;

cmd.Parameters.Add(p);

cmd.ExecuteNonQuery();

var outputValue = p.Value;

Expected behavior

Procedure can execute succeed and can get the output value

Environment

  • .NET Framework/Core version (e.g. Core 2.1)
  • AdoNetCore.AseClient nuget package version (e.g. 0.13.1)

Additional context
I saw the source code and some code confuse me in FormatItem.cs file
Occur error because the decimal output parameter handle special.

sorry my english is very poor

@Ju42
Copy link

Ju42 commented Nov 27, 2023

Hello I think this issue has been fixed with this PR: #175 included in version 0.18.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants