Strange characters

 

I using this code

string row="";
   query=StringConcatenate("SELECT id FROM table1");
   length=StringLen(query);
   mysql_real_query(mysql2,query,length);
   int result = mysql_store_result(mysql2);
   int numOfRows = mysql_num_rows(result);
   Print("numOfRows:",numOfRows);
   for (int i=0;i<numOfRows;i++) {
      row = mysql_fetch_row(result)
      Print(row);
   }

and in Experts tabs i see this comment

2011.08.12 11:07:28 USDCHF,H4: Xö\ö421

How can i solve the problem?

 
dudufx:


How can i solve the problem?


Two suggestions:

  1. ask the person that wrote the code for help
  2. process the variable row ( Print(row); ) further so that it is "man readable"

Reason: