Closed jeremyevans closed 6 years ago
Thanks for taking the time to let me know about that Jeremy. I just made this pull request that passed locally. https://github.com/rails-sqlserver/tiny_tds/pull/411
If it goes green (which it did locally) I will merge that in and also take on your other reported issue around the use_utf16 option and then get v2.1.2 released.
BigDecimal.new
is deprecated and produces these warning messages in verbose mode on ruby 2.5:warning: BigDecimal.new is deprecated; use Kernel.BigDecimal method instead.
tiny_tds currently uses the C-API to callBigDecimal.new
inext/tiny_tds/result.c
, you may want to consider callingKernel.BigDecimal
instead.