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

GetSqlDbType missing case numeric #419

Closed
krisnatm opened this issue May 11, 2018 · 2 comments
Closed

GetSqlDbType missing case numeric #419

krisnatm opened this issue May 11, 2018 · 2 comments
Assignees
Labels

Comments

@krisnatm
Copy link

Add numeric type to private static string GetSqlDbType(string sqlType, int scale, int precision)

I believe it should be this:

case "decimal":
case "numeric":
sysType = "Decimal";
break;

Currently sysType is returning as VarChar when numeric is passed as sqlType

@sjh37 sjh37 self-assigned this May 11, 2018
@sjh37 sjh37 added the bug label May 11, 2018
@sjh37
Copy link
Owner

sjh37 commented May 11, 2018

Thanks. This will be in the next release.

@sjh37 sjh37 closed this as completed May 11, 2018
sjh37 added a commit that referenced this issue May 11, 2018
@sjh37
Copy link
Owner

sjh37 commented Jul 17, 2018

Released in v2.37.0

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

No branches or pull requests

2 participants