Re: from pgsql_perl5 to DBD-Pg



There is a standard terminology in databases for "rows" and "columns"
of a table, that is "records" and "fields".

DBI uses the following and rather messy notation:

$sth->{NUM_OF_FIELDS}
$sth->rows

What refrained the developers from defining them as follows?

$sth->nfields
$sth->nrecords

.