in reply to Re: Re: Dereferencing and DBI methods
in thread Dereferencing and DBI methods

Not quite, mine says 'row' not 'col' as your first example does. Are you trying to avoid using bind_parm/bind_col? I find they are most useful and very easy to maintain. A good editor with a column mode that can insert sequence numbers helps (like ultraedit) with binding the references.
  • Comment on Re: Re: Re: Dereferencing and DBI methods

Replies are listed 'Best First'.
Re:(4) Dereferencing and DBI methods
by Cirollo (Friar) on Jul 25, 2001 at 17:39 UTC
    Selecting a column rather than a row can be very useful. For example, suppose I want a list of every distinct value in one of my database fields. I can use selectcol_arrayref along with a SELECT DISTINCT statement to slurp the whole column into an array. Any of the other DBI functions would force you to use looping structures or list operators on your fetched data to get the same result, and you would have to bother with prepare, execute, fetch and finish.

    If you are using any of the database handle methods (as opposed to statement handle methods), you cannot bind variables becuase you never prepare the statement; DBI does it all for you. This works wonderfully for a one-shot query, where there is no reason to bind variables.