On Thu, Sep 27, 2012 at 5:06 PM, Adrian Killens <[email protected]> wrote: > So if I do 'puts test' I get everything that's bought back from the query, if I do 'puts test[0]' then I just get the first row. > How would I bring back a more specific value. e.g. first column, first row?
I prefer "p test[0]" instead of "puts test[0]". Try this: puts test[0][0] Željko -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. [email protected] http://groups.google.com/group/watir-general [email protected]
