jmClifford has asked for the wisdom of the Perl Monks concerning the following question:
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;
Column Name; inits_imperial Value (SQLite Expert); '°F' Value as Perl has on console; '°F'
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;
Column Name; inits_imperial Value (SQLite Expert); '°F' Value as Perl has on console; '°F'
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......
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Different presentation by SQLite
by Corion (Patriarch) on Jul 13, 2024 at 06:40 UTC | |
Re: Different presentation by SQLite
by LanX (Saint) on Jul 13, 2024 at 11:30 UTC | |
by roho (Bishop) on Jul 14, 2024 at 05:03 UTC | |
by jmClifford (Acolyte) on Jul 13, 2024 at 14:24 UTC | |
by NERDVANA (Curate) on Jul 13, 2024 at 20:12 UTC |