Using VB
Okay, I have a Access database going on that stores all the data. Would it be better to do either:
1) Get the info from the database, store them in variables(array s), call them when needed, then when needed have them save all using some sort of /save command or such.
OR
2) Call the info when needed right from the DB, and directly save it when something changes..
This is using the Microsoft DAO 3.6 Library...
What I'm asking is. Can I call straight from the DB all the time? Or will it cause lag... Basicly: Should it be called and stored into variables then saved back into the DB using those variables, so it would not save if a crash occured? Or can I call it right to the client, and have it save soon as something updates?
This is for server to client stuff.
Okay, I have a Access database going on that stores all the data. Would it be better to do either:
1) Get the info from the database, store them in variables(array s), call them when needed, then when needed have them save all using some sort of /save command or such.
OR
2) Call the info when needed right from the DB, and directly save it when something changes..
This is using the Microsoft DAO 3.6 Library...
What I'm asking is. Can I call straight from the DB all the time? Or will it cause lag... Basicly: Should it be called and stored into variables then saved back into the DB using those variables, so it would not save if a crash occured? Or can I call it right to the client, and have it save soon as something updates?
This is for server to client stuff.
Comment