DataSet in ArrayList

  • Thread starter Thread starter murali.trichy
  • Start date Start date
M

murali.trichy

Is it possible to store my Dataset in ArrayList ? if yes then How ?
bye
murali
 
Murali,
Is it possible to store my Dataset in ArrayList ? if yes then How ?
bye

Assuming that you mean with store not really store.

Than is the answer, in the same way as with any other object.

Cor
 
Hi,

As Cor mentioned, DataSet is just a class and you can store it whereever you
want.
That said, can you be a bit more specific what exactly are you trying to
achieve?
 
In my project, I'm try to input the data for Promotion of Data it hold
the following information

Label : (promotion name)
Filter : (Relational Operators) (condition)
(And / Or)
(Relational Operators) (condition)
(And / Or)
:
:

Like that it will continue for each datatype like (integer, string,
date).

ie Each datatype having one or morethan one promotion (what I said
above is single promotion).

I want to store this information in the SQL-Server. So I decided to
store the above promotion in the form of XML. and for local
modification I'm using the same in DataTable from Dataset.

In the sence for my processing I will maintain a dataset for storing
the each promotion. I need to get back for that I tried Array of
dataset but, it is not good to store my array of dataset in Session
variable. The I got an idea about ArrayList, to store my set of
Dataset.

I think you got little bit of my goal. If you have any query just mail
me muraliATgsdindia.com

thanks
 
Back
Top