Quote:
Originally Posted by Jack_Leslie
I've had this problem also. I found that loading it into a temp string then formatting the value from the temp string works. Like this:
pawn Код:
cache_get_field_content(i, "owner", temp_string); format(businessData[i][bowner], 128, "%s", temp_string);
|
I had to complete the parameters with the connection handle and the string length before it would work. Odd, isn't it? Thank you though.