On Sep 20, 12:14 pm, gregh <[email protected]> wrote: > Thanks! It worked. > > require 'rubygems' > require 'sequel' > > DB=Sequel.ado(:conn_string=>'Provider=Microsoft.Jet.OLEDB.4.0;Data > Source=C:\mydata\my_file.xls;Extended Properties=Excel 8.0;') > > dataset=DB[:cam] > dataset.all.each{|r| p r} > > output: > > {:names=>"north", :loc=>1.0} > {:names=>"south", :loc=>2.0} > {:names=>"east", :loc=>3.0} > {:names=>"west", :loc=>4.0} > > Perfect.
Thanks for letting me know. The change has been committed to the repository (http://github.com/jeremyevans/sequel/commit/ 6983119268cb0921736bc0b79ff128562823065b) and will be available in 3.5.0. Jeremy --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sequel-talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sequel-talk?hl=en -~----------~----~----~----~------~----~------~--~---
