AryaWu/sqlite
0
1/*2** Run this script using "sqlite3" to confirm that the command-line3** shell properly handles the output of double-width characters.4**5** https://sqlite.org/forum/forumpost/008ac802766*/7.mode box8CREATE TABLE data(word TEXT, description TEXT);9INSERT INTO data VALUES('〈οὐκέτι〉','Greek without dblwidth <...>');10.print .mode box11SELECT * FROM data;12.mode table13.print .mode table14SELECT * FROM data;15.mode qbox16.print .mode qbox17SELECT * FROM data;18.mode column19.print .mode column20SELECT * FROM data;21 