Bruce Hohl wrote: > Is printf with thousands separator working for anyone?
No. SQLite's printf is designed for database-internal processing (e.g., sorting), and does not support locales. Formatting values for display is the responsibility of the application. (The sqlite3 command-line shell has some rudimentary column width settings, but otherwise does not really bother.) Regards, Clemens