Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am making a database for an accounting/sales type system similar to a car sales database and would like to make some transactions for the following real world actions.

  • salesman creates new product shipped onto floor (itempk, car make, year, price).
  • salesman changes price.
  • salesman creates sale entry for product sold (salespk, itemforeignkey, price sold, salesman).
  • salesman cancels item for removed product.
  • salesman cancels sale for cancelled sale

The examples I have found online are too generic, like this is a transaction. I would like something resembling what I am trying to do to understand it.

Are there some good similar or related SQL examples I can look at to design these? Are transactions used for sales databases? Or if you have done this kind of SQL transaction before could you make an outline for how these could be made?

share|improve this question
Can you limit your question to what concerns you have if these transactions are not handled properly? Are you worried that a price change may take place that is not picked up by a subsequent sale transaction? Pick one scenario and you may be able to apply the pattern. – JeffO Feb 12 '11 at 0:53
1  
I can not think of why you would need them in your examples. The classic case is double entry accounting where you need two inserts t0 keep the DB in a consistent state. Think of when you go to ATM and take out money. The banks account is withdrawn but it fails to take money from your account :-). Your account is withdrawn but the banks is not and you do not get your money :-(. If one query fails the other must fail also and be rolled back. – nate c Feb 12 '11 at 1:03
thanks for the quick feedback... i am just trying to organize the main actions users can take on the sql sales database into sql transactions which i will later access from a user friendly c# application. i have heard using sql transactions for the main actions users take is a good idea for tracking changes (auditing), atomicity, rolling back committed transactions when needed, and that it is good practice for financial databases and wanted to incorporate something similar on my database if anyone could provide a useful code snippet example or two... – fa1c0n3r Feb 12 '11 at 1:09
nate c, thanks. i thought i might need it because i am expecting a lot of users including people located in other office branches, and frequent changes being made, also each transaction may contain multiple queries as i also have to send data two other systems with each transaction... – fa1c0n3r Feb 12 '11 at 1:21
@fa1con3r programmers.stackexchange.com will help you... – Crimsonland Feb 12 '11 at 2:02
show 2 more comments

closed as not a real question by Mitch Wheat, Mark Trapp, Jeff Atwood Feb 12 '11 at 14:57

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.