Error 035: argument type mismatch
#6

Quote:
Originally Posted by Misiur
Посмотреть сообщение
mysql_fetch_field uses field index, not name.

pawn Код:
//Bad
mysql_fetch_field("wafflez", str);
//Good
mysql_fetch_field(0, str);
You need mysql_fetch_field_row (mysql_get_field macro to be exact)
pawn Код:
mysql_fetch_field("WAFFLEZ", fetchVal);
//changes to
mysql_get_field("WAFFLEZ", fetchVal);
Ahhh, I get it now. Thanks a lot!
Reply


Messages In This Thread
Error 035: argument type mismatch - by Jonesy96 - 23.02.2013, 17:41
Re: Error 035: argument type mismatch - by Jonesy96 - 23.02.2013, 18:31
Re: Error 035: argument type mismatch - by Misiur - 23.02.2013, 18:37
Re: Error 035: argument type mismatch - by Jonesy96 - 23.02.2013, 21:09
Re: Error 035: argument type mismatch - by Misiur - 23.02.2013, 21:14
Re: Error 035: argument type mismatch - by Jonesy96 - 23.02.2013, 21:19

Forum Jump:


Users browsing this thread: 4 Guest(s)