I try to get the number of found rows out of a mysql query with a limitation. Google gave me the hint with the SQL_CALC_FOUND_ROWS function.
I also get the right result in the "RowDataPackage".
RowDataPacket { 'FOUND_ROWS()': 5 }
But when i try to parse the result with
console.log(rows[0].FOUND_ROWS());
I only get the result "undefined". What am i doing wrong?