Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Database Transactions ?

Status
Not open for further replies.

vikramonline

Programmer
Oct 14, 2003
186
0
0
IN
I have password protected site where the authorised users can update the database.
The problem is that there can be a scenario where many users are trying to modify a single record.This can really create problems.

The question is that how can we solve such sort of problem.
Is it a question of maintaining transactions??
The database used is MS-Access.

Please suggest


 
Depending on the application, you might want to add a table of items that are currently "checked-out" for updating. The choose a timeframe for how long they are out (and whether that user's session is still active) so that only one editable version is out at once (others get read-only access)

Programming today is a race between software engineers striving to build better and bigger idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rick Cook (No, I'm not Rick)

fart.gif
 
mWolf00,
Thanx for ur help and sorry for the late response.
Whatever u said I had already a fair idea of that but I dont know how to implement it.

Any suggestions or code will be a great help.
Thanx.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top