Hi,
Actually, I have a table with three columns and four rows.
My webservice's response is a list of users containing four informations for each user (login, name, email and division). Each information is binding to one case of the second column.
For example if the list is :
first response
User1 = apink, alex pink, apink@..., 5
User2 = tblue, tony blue, tblue@..., 5
My table will look like this :
column one | column two | column three
apink
alex pink
apink@...
5
----------------------------------------------
tblue
tony blue
tblue@...
5
-----------------------------------------------
which is what i want. But I want that if I call the web service again with a different parameter a new table will be created and the old will be still here like this :
second response
User1 = kvarsen, Kyle varsen, kvarsen@..., 5
User2 = someone, some one, sone@..., 5
column one | column two | column three
apink
alex pink
apink@...
5
----------------------------------------------
tblue
tony blue
tblue@...
5
-----------------------------------------------
column one | column two | column three
kvarsen
kyle varsen
kvarsen@...
5
----------------------------------------------
someone
some one
sone@...
5
-----------------------------------------------
I hope to have been clear.
Thanks for your help