When I display a table in Sqlite (using DBUtils, for example) records containing a null value in a field will display as "null". Is there any option to display a blank field instead?
Obviously, next alternatives are to:
a) rename the column titles by
Select ifnull(col1, '' ") as Column1 , etc....
or
b) do the ifnull comparison/replacement where you ouput the results.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.