tags 536662 unreproducible moreinfo
thanks

Hi Martin,

On Sun, 2009-07-12 at 10:45 +0200, Martin Godisch wrote:
> Package: sqlite3
> Version: 3.5.9-6
> 
> The sqlite3 CLI doesn't count multi-byte characters correctly:
> 
> sqlite> create table test (id text primary key);
> sqlite> insert into test values ('123456');
> sqlite> insert into test values ('abcdef');
> sqlite> insert into test values ('äöüäöü');
> sqlite> .mode column
> sqlite> .width 4
> sqlite> select * from test;
> 1234
> abcd
> äö
 I can't reproduce it with the current version in testing:
SQLite version 3.6.14.2
sqlite> create table test (id text primary key);
sqlite> insert into test values ('123456');
sqlite> insert into test values ('abcdef');
sqlite> insert into test values ('äöüäöü');
sqlite> select * from test;
123456
abcdef
äöüäöü
sqlite> .mode column
sqlite> .width 4
sqlite> select * from test;
1234
abcd
äöüä

It works as expected. Can it be your terminal that strip characters? Can
you update your version of sqlite3 to 3.6.14.2 at least?

Regards,
Laszlo/GCS




--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to