> Hi, Howdy,
> I would like to know if it is possible with perl, when we search for a general > 'thing'( i.e search in the database all > people that speaks english) in a MySQL database, what is the row number of the last > row that matches the SELECT statment? > If so can someone show me an example? my($last_row_number) = $dbh->selectrow_Array($query); Now $query just needs to be an sql statement that returns what you want. Kind of depends on what you mean by last row number, the count of rows? ('50' in a 50 row return) or The last unique numeric ID? ( '36637889345873456' in a 50 row return), see what I mean? Depends on what You're talking about. HTH DMuey > I would appreciate > Anthony -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]