19/03/2021 00:47
Código:
new cache:result = mysql_query(conn, "select 'ola mundo'");
printf("result = %s ", result);
cache_delete(result);
me retorna: result = ☺☺,O
Código:
new cache:result = mysql_query(conn, "select 10");
printf("result = %d ", result);
cache_delete(result);
me retorna: result = 1
Sabes dizer porquê? Não faz sentido não conseguir printar o result.