> Hihi there ;) > So, let me get this strait in my head. > You're saying to just acess the DB every time i change > something instead of manipulating in memory, then a dump when > they chose to save, or at prog end? > And since changes are to be made, wouldn't that bog down > the system a little?
Having a couple of indexes in memory can speed up searching. Users like that. You should however, write changes directly to the database as they are made, in case of crashes etc. You should also consider scalability. Will you have enough memory for your array if your client's client list doubles in size, or what about a 10-fold increase? There are definite advantages to using arrays if you can make them work, but there can be a lot of unforseen consequences. My advice would be to get it working without arrays first, and if people are unhappy with performance then you will have a better idea of what bottlenecks you need to solve. Stay away from bound controls. You will find it easier to switch to using arrays later, if you use unbound controls. (It is possible to write your own binding layer but that's a rather code-heavy approach). Adelle. ------------------------ Yahoo! Groups Sponsor --------------------~--> Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar. Now with Pop-Up Blocker. Get it for free! http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/k7folB/TM --------------------------------------------------------------------~-> '// ======================================================= Rules : http://ReliableAnswers.com/List/Rules.asp Home : http://groups.yahoo.com/group/vbHelp/ ======================================================= Post : [EMAIL PROTECTED] Join : [EMAIL PROTECTED] Leave : [EMAIL PROTECTED] '// ======================================================= Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/vbhelp/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
