pBlueG / SA-MP-MySQL

MySQL plugin for San Andreas Multiplayer
BSD 3-Clause "New" or "Revised" License
194 stars 81 forks source link

warning 213: tag mismatch: expected tag none ("_"), but found "MySQL" #285

Closed KirovNoName closed 8 months ago

KirovNoName commented 10 months ago

i found this error

warning 213: tag mismatch: expected tag none ("_"), but found "MySQL"

new rows = cache_get_row_count(radioConnectionID);

adib-yg commented 9 months ago

You need to pass the rows variable to cache_get_row_count in MySQL R41

new rows;
cache_get_row_count(rows);

or use cache_num_rows function

new rows = cache_num_rows();
KirovNoName commented 8 months ago

You need to pass the rows variable to cache_get_row_count in MySQL R41

new rows;
cache_get_row_count(rows);

or use cache_num_rows function

new rows = cache_num_rows();

thanks