A anaylor01 Well-Known Member Licensed User Longtime User Apr 28, 2016 #1 How can I list all the values in a field in a table to a messagebox?
Erel B4X founder Staff member Licensed User Longtime User Apr 28, 2016 #2 Which type of table? Upvote 0
DonManfred Expert Licensed User Longtime User Apr 28, 2016 #4 read the data from the database , create a string to show in messagebox and call the messagebox Read beginners guide for samples on how to work with a database Upvote 0
read the data from the database , create a string to show in messagebox and call the messagebox Read beginners guide for samples on how to work with a database
A anaylor01 Well-Known Member Licensed User Longtime User Apr 28, 2016 #5 I tried the below but only get one value. B4X: Msgbox("Tie between " & SQL1.ExecQuerySingleResult("SELECT teamname from gameplay"),"Tie Game") Upvote 0
I tried the below but only get one value. B4X: Msgbox("Tie between " & SQL1.ExecQuerySingleResult("SELECT teamname from gameplay"),"Tie Game")
DonManfred Expert Licensed User Longtime User Apr 28, 2016 #6 What did you expect? ExecQuerySingleResult will get exactly ONE result. Upvote 0