You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get the following error when trying to query a SQL Server datasource with a column type of nvarchar:
undefined method []' for nil:NilClass /path/to/ruby/gems/rdbi-driver-odbc-0.1.2/lib/rdbi/driver/odbc.rb:214:inblock in new_execution'
I was able to get past the error by editing lines 214 and 215 in odbc.rb to include rescue nil and rescue :default, respectively, but obviously I'm not submitting that as a pull request since that's probably the most ham-fisted approach one could have come up with to address the issue.
The text was updated successfully, but these errors were encountered:
I get the following error when trying to query a SQL Server datasource with a column type of nvarchar:
undefined method
[]' for nil:NilClass /path/to/ruby/gems/rdbi-driver-odbc-0.1.2/lib/rdbi/driver/odbc.rb:214:in
block in new_execution'I was able to get past the error by editing lines 214 and 215 in odbc.rb to include rescue nil and rescue :default, respectively, but obviously I'm not submitting that as a pull request since that's probably the most ham-fisted approach one could have come up with to address the issue.
The text was updated successfully, but these errors were encountered: