1

There is no problem when I try to insert this symbol "ñÑ" in the mysql database. However, when I try to retrieve the same data the symbol or character that was selected by the query would appear as null value or something like a ? or a square.

Please help me with these I have been troubled many weeks by these problems. I just cannot understand anymore. I have written the code in java.

user1317221_G
  • 14,494
  • 3
  • 48
  • 75
Tsuna Sawada
  • 339
  • 1
  • 2
  • 14

1 Answers1

0

The "�" is the replacement character, used when something processing characters can't display or otherwise handle a character. A box is sometimes used for the same purpose, or indicates that the font being used doesn't have a glyph for some character.

To resolve this, check that the character sets being used for the various components, such as the column and connection, are correct.

See also: "Setting the default Java character encoding?"

Community
  • 1
  • 1
outis
  • 72,188
  • 19
  • 145
  • 210