Hello,

I want to store some data to string array that came from Database table.



The table Data is (only a column):

Alice Mutton
Aniseed Syrup
Boston Crab Meat
Camembert Pierrot
Carnarvon Tigers

...

...



I want to store this retrieved data to String array like (Programetically):

string[] data = {"Alice Mutton", "Aniseed Syrup", "Boston Crab Meat", "Camembert Pierrot", "Carnarvon Tigers"};



How can I fix it?



best regards

ehsan