On 9/20/17, Phoenix <[email protected]> wrote: > > From what I have been able to workout it should be possible to return a > REAL number as a formatted text string, which would make things easier > for me, but am not sure of the details to do it.
Just call sqlite3_column_text() instead of sqlite3_column_double(). SQLite will do the conversion for you automatically. -- D. Richard Hipp [email protected] _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

