Skip to content

Commit

Permalink
add missing scale with sp_describe--
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikEJ committed Dec 5, 2024
1 parent c619742 commit 0d99186
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,8 @@ private static List<List<ModuleResultElement>> GetFirstResultSet(SqlConnection c
Ordinal = int.Parse(row["column_ordinal"].ToString()!, CultureInfo.InvariantCulture),
Nullable = (bool)row["is_nullable"],
MaxLength = maxLength,
Precision = (byte)row["precision"],
Scale = (byte)row["scale"],
};

list.Add(parameter);
Expand Down

0 comments on commit 0d99186

Please sign in to comment.