Can anyone tell me why this query
SELECT printf("$ %4.2f",total) FROM tickets WHERE total > 0;
where total is type real,
works fine ($1.00) when I run it in a sqlite db manager but when I build the exact same string in B4A using stringbuilder, it fails on the same db ?
SELECT printf("$ %4.2f",total) FROM tickets WHERE total > 0;
where total is type real,
works fine ($1.00) when I run it in a sqlite db manager but when I build the exact same string in B4A using stringbuilder, it fails on the same db ?