afroblanca
Programmer
Hello all,
I'm wanting to design a database object that handles most of the gruntwork typically associated with database-driven objects, such as initializing default values, updating the table that the object represents, and retrieving data members from the table.
This object will store all of its data members in an ArrayList (I'm using C#. An equivalent Java analogue would be a Vector) as opposed to having static member variable declarations. The data members in the arraylist will then be accessed through properties (like Java get() and set() accessors).
The main advantage of keeping data members in the ArrayList is that it will allow me to iterate through them programmatically. Using properties to access the data members insures that I will be able to access them in a type-safe way.
Here's my question - is keeping the data members in an ArrayList a Bad Idea? I can see it as adding some overhead (an ArrayList surely uses more resources then a bunch of primitive data types), but I can't imagine that this would be too much of a problem.
How do people usually design data objects, anyway? Do they generally bother to at all? Or do they just have some sort of "utility class" that simply runs stored procedures for them?
I'm wanting to design a database object that handles most of the gruntwork typically associated with database-driven objects, such as initializing default values, updating the table that the object represents, and retrieving data members from the table.
This object will store all of its data members in an ArrayList (I'm using C#. An equivalent Java analogue would be a Vector) as opposed to having static member variable declarations. The data members in the arraylist will then be accessed through properties (like Java get() and set() accessors).
The main advantage of keeping data members in the ArrayList is that it will allow me to iterate through them programmatically. Using properties to access the data members insures that I will be able to access them in a type-safe way.
Here's my question - is keeping the data members in an ArrayList a Bad Idea? I can see it as adding some overhead (an ArrayList surely uses more resources then a bunch of primitive data types), but I can't imagine that this would be too much of a problem.
How do people usually design data objects, anyway? Do they generally bother to at all? Or do they just have some sort of "utility class" that simply runs stored procedures for them?