/
niceSOFT
/
sqlite
Обзор
Документация
Войти
/
niceSOFT
/
sqlite
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
version-3.51.3
test/dblwidth-a.sql
20 строк
518 B
drh
Enhance "box" and "column" mode formatting in the CLI to better deal with
31 май 2025, 23:51
31 май 2025, 23:51
c019010
Код
Авторство
О чём код?
/* ** Run this script using "sqlite3" to confirm that the command-line ** shell properly handles the output of double-width characters. ** ** https://sqlite.org/forum/forumpost/008ac80276 */ .mode box CREATE TABLE data(word TEXT, description TEXT); INSERT INTO data VALUES('〈οὐκέτι〉','Greek without dblwidth <...>'); .print .mode box SELECT * FROM data; .mode table .print .mode table SELECT * FROM data; .mode qbox .print .mode qbox SELECT * FROM data; .mode column .print .mode column SELECT * FROM data;