Android Question Display results using DBUtils.ExecuteHtml

microbox

Active Member
Licensed User
Longtime User
Hi everyone! I'm having issue displaying my result query to a webview. Kindly see the image...not really sure what I'm doing wrong.. and is there away I can adjust the width of header to make it neat?
Thanks for the time.

repeating.png
repeating.png

EDIT: This is my code to produce the result
B4X:
wv1.LoadHtml(DBUtils.ExecuteHtml(SQL, "SELECT * FROM sales Where date = = '" & vDate & "'" ,Null, 0,False))
 
Last edited:

microbox

Active Member
Licensed User
Longtime User
There are two equal signs in the query.
Oops sorry about that..my mistake on copying and pasting ;)
but this is the actual code
B4X:
wv1.LoadHtml(DBUtils.ExecuteHtml(SQL, "SELECT * FROM sales Where date = '" & vDate & "'" ,Null, 0,False))

Thanks Erel for replying.
 
Upvote 0

microbox

Active Member
Licensed User
Longtime User
Thanks Erel, Works great now :) ..but another question is how can I adjust the width of the column?

headerissue.png
 
Upvote 0
Top