20.03.2014, 07:41
You don't need it anymore. You can add a callback to mysql_tquery which will pass the parameter and works same as like that callback.
pawn Код:
mysql_tquery(DB, "SELECT..........", "ExampleQuery", "s", "example");
forward ExampleQuery(p_name[]);
public ExampleQuery(p_name[])
{
printf("%s", p_name);
// prints 'example'
}