T
tomi
Hi
I'm creating a small IS and I'm wondering if is a good idea to create
one static class which will hold methods that will access the database.
So I'd have only one class in the memory used for all db access. I
think it is a good solution but .. maybe not.
What do you think . ??
I have a class
public static class DB Access {
public static void InsertUse(string username) {
.....
}
.....
tx in advance
Tomi
I'm creating a small IS and I'm wondering if is a good idea to create
one static class which will hold methods that will access the database.
So I'd have only one class in the memory used for all db access. I
think it is a good solution but .. maybe not.
What do you think . ??
I have a class
public static class DB Access {
public static void InsertUse(string username) {
.....
}
.....
tx in advance
Tomi