Connecting Tech Pros Worldwide Help | Site Map

Best way to develop a database program

  #1  
Old November 21st, 2008, 12:15 PM
HDI
Guest
 
Posts: n/a
Hi,

I'm looking for the most user friendly way to develop a database
program.
Maybe some of you have got some nice experience and ideas that I can
use.

I always worked with sql statements te get and put data in the
database. For small applications it will work well to make add, change
and a delete buttons but when a user has got a lot of data on his
screen it feels wrong. The user has to put in all the data and when
he's done he has to press on the save (change) button. I don't think
that last step is user friendy. If something happens or there is a
data concurreny or ... he has to insert all the data again.

So I was thinking of working like MS Access does. When data changes
write it to the database. The disadvantage is that there will be more
traffic.

How do you work?

I'm working with vb2005 express and sql server.
  #2  
Old November 22nd, 2008, 01:15 AM
Michael C
Guest
 
Posts: n/a

re: Best way to develop a database program


"HDI" <hdinf@hotmail.comwrote in message
news:e55506ba-684a-489e-b893-67c76d27fe64@l39g2000yqn.googlegroups.com...
Quote:
Hi,
>
I'm looking for the most user friendly way to develop a database
program.
Maybe some of you have got some nice experience and ideas that I can
use.
>
I always worked with sql statements te get and put data in the
database. For small applications it will work well to make add, change
and a delete buttons but when a user has got a lot of data on his
screen it feels wrong. The user has to put in all the data and when
he's done he has to press on the save (change) button. I don't think
that last step is user friendy. If something happens or there is a
data concurreny or ... he has to insert all the data again.
>
So I was thinking of working like MS Access does. When data changes
write it to the database.
>
How do you work?
Either way is appropriate depending on the situation. In some cases writing
the data as you go is not good for the user as they don't get to play around
and then not save their changes. But in some cases they don't need to play
around.
Quote:
The disadvantage is that there will be more
traffic.
And this can lead to a slower app for the user. With a large number of users
you might find moving between rows to be slow (I presume you'll save when
they leave the row)

Basically there is no right or wrong answer.

Michael


Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to develop Peter answers 5 July 31st, 2008 05:35 AM
What is the best way to debug/test a PHP code ? sudeerao@gmail.com answers 5 November 30th, 2006 01:25 AM
Is PHP the best way to create a web application? neodem answers 12 January 23rd, 2006 04:55 AM
There has to be a better way to develop web applications. Rob R. Ainscough answers 43 November 19th, 2005 05:05 PM