Dimitris Zenios wrote: > Does anyone know how can i do a mysql_num_rows query with mono? Execute the command "select FOUND_ROWS()" on the same connection. Note that if your select is using "LIMIT", you must use the SQL_CALC_FOUND_ROWS options: "select SELECT SQL_CALC_FOUND_ROWS * from table limit 10" Robert