ticketmaster type of site

A

Andy G

I need to create a site for registration of classes. The client wants the
system to 'hold' the class while the person is checking out so no one else
accessing the system can have access to the same class. I am in the
preliminary architechture stages of the system and am just trying to get the
best practices down. Does anyone have any experienc, url's, threads that
they can point me to?

Thanks.
 
G

Guest

Basically you just need to have a bit field "OnHold" for the class table's
particular row so when somebody starts a checkout operation you can update
this row and set the column to "true" (1). Then you can release it when they
cancel, or after a period of time with no final "Checkout" by that user.

The rest of your stored procedures, if designed around this, should make
whatever you need to do relatively easy. Regarding sample code, urls, etc.
can't help there.
Peter
 
A

Andy G

So if I understand you right, when someone begins to register for one seat
in that class the entire class is on hold and no one else can register for
that class? If that's true, the on hold bit field will not work. There are
many seats in each class and we can't lock the class down until all those
seats are taken.

I'm thinking about creating another table that will hold one record for each
seat in the class and will have bit fields like 'Taken' and 'On Hold'. That
way the specific seat would be on hold, not the entire class.

Andy
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,434
Messages
2,571,691
Members
48,796
Latest member
Greg L.

Latest Threads

Top