[sqlite] Fw: new message

2015-11-21 Thread ronny.dier...@telenet.be
Hello! New message, please read ronny.dierckx at telenet.be

[sqlite] attempt at output with thousands separator via extension

2015-11-21 Thread Bruce Hohl
(1) SQLite will not return output with a thousands separator as follows: sqlite> select printf("%15.2f",123456789.12789); 123456789.13 sqlite> select printf("%'15.2f",123456789.12789); (2) C language

[sqlite] attempt at output with thousands separator via extension

2015-11-21 Thread Scott Robison
On Sat, Nov 21, 2015 at 1:47 PM, Bruce Hohl wrote: > (1) SQLite will not return output with a thousands separator as follows: > > sqlite> select printf("%15.2f",123456789.12789); >123456789.13 > > sqlite> select printf("%'15.2f",123456789.12789); > > > >