From: Dmitry Nikiforov Date: 2012-02-09T01:13:46+09:00 Subject: Re: MySQL access, parameter binding Bartosz DziewoƄski wrote in post #1044590: > Use this: sth.execute(*bindParams). The star (called "splat" in this > context) will "split" the array into individual components, and pass > all of them as arguments to the method. You can use the same operator > for example for "destructuring assignment": > > a, b = * 'some text'.split(/ /) > #=> a = 'some', b = 'text' Awesome! THANK YOU!!! :) Looks like it's going to be a long way until I'm as good at Ruby as I am at Perl (not that I'm 10 out of 10 in Perl anyways... :) ) -- Posted via http://www.ruby-forum.com/.