Alternative to Dataset??

A

Amar

Hi,
I am part of a team building a stock exchange software - Order
Management system'.
The current system that we have supports 200,000 orders per day.
All of this data is needed in memory.Ofc ourse this system was built in
VC++.
what I want to know is :

- Is there a alternative to storing data in dataset?
- this alternative doesnt have to be as flexible and as feature filled
as the dataset.
-can you suggest some ideas for the same.
I have been tinkering around with specifalised business objects and
using them to store the data.
 
G

Guest

Amar,
There are a number of alternatives, depending mostly on the functionality
you need.
You have System.Collections - based objects such as Hashtable, ArrayList,
and others. You can also create a custom Collection-type object by deriving
from CollectionBase or one of the above-mentioned classes.
Peter
 
I

Ignacio Machin \( .NET/ C# MVP \)

Hi,

-can you suggest some ideas for the same.
I have been tinkering around with specifalised business objects and
using them to store the data.

You can define a business object and have a collection of these, if using
2.0 you can use a template collection.

If you have a static number of instances you could use an array instead.

This approach will be faster as you will avoid the boxing/unboxing of the
dataset
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top