John Mambo
2007-05-23 15:17:45 UTC
I was just wondering what is the use of the second parameter (mixed $col = 0
) in DB getCol.
If we are only getting one column why should provide two columns in the
select statement and then add a parameter to get that column?
For example
$data =& $db->getCol('SELECT cf, df FROM foo', 1);
can simply be accomplished by
$data =& $db->getCol('SELECT df FROM foo');
John
) in DB getCol.
If we are only getting one column why should provide two columns in the
select statement and then add a parameter to get that column?
For example
$data =& $db->getCol('SELECT cf, df FROM foo', 1);
can simply be accomplished by
$data =& $db->getCol('SELECT df FROM foo');
John