Clear questions and runnable code get the best and fastest answer |
|
PerlMonks |
comment on |
( [id://3333]=superdoc: print w/replies, xml ) | Need Help?? |
Hi. I have an SQLite DB loaded from the web. I can read this with SQLite Expert Personal (5.4). On viewing a cell within the DB, I have the following observations;
The above is with an original cell value that was downloaded (from the web). However, I can with the same Perl program create another row (with an Insert operation, $insert->execute('998', '°C', '°C', '°F'); ), where I get the expect behavior as below;
The extra character from the former (and original cell) is Â, which I confirm is UTF-8 hex C3 82 (with Notepad++ hex presentation, after cut and paste). It appears the only way to rid my SQLite DB of these characters in the Perl console presentation (IDE is Eclipse) is to delete and insert the whole row again. Editing with SQLite Expect does not work. Can anyone shed light on this situation ?? Regards JC......In reply to Different presentation by SQLite by jmClifford
|
|