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

I have a customer entity with 10 Properties.

  • 7 of those properties are saved in the customer table.
  • 3 of those properties are saved in the test table.

The 3 properties in test table are CustomerId, Label, Text.

When I query these 3 properties I get 3 dataset like this:

CustomerId | Label  | Text
1005       | blubb  | What a day
1006       | hello  | Sun is shining
0007       |        |

When I save them I have to call my stored procedure 3 times on the test table

In my SP I check wether the dataset with the specific customerId AND Label already exists then I do an UPDATE else an INSERT.

How would you call the stored procedure 3 times with all CommandText, CommandType, ExecuteNonQuery etc stuff ?

share|improve this question
Is there an object that represents the customer, or the entities that you are wanting to insert into the test table? – msarchet Jan 28 '11 at 15:11

3 Answers

up vote 7 down vote accepted

The easiest way : use the TransactionScope class.

Simply put the call into a block like :

using(TransactionScope ts = new TransactionScope()){

    using(SqlConnection conn = new SqlConnection(myconnstring)
    {
        conn.Open();
... do the call to sproc

        ts.Complete();
        conn.Close();
    }
}

[Edit] I also added the SqlConnection, because I'm very fan of this pattern. The using keyword ensure the connection is closed and the transcation rollback if something wrong happened

share|improve this answer
+1 I was also going to suggest TransactionScope. – James Jan 28 '11 at 15:15
Very helpful. Thanks – cbmeeks May 15 '12 at 15:30

Well, a SqlTransaction spanning three ExecuteNonQuery is the simplest, but some alternatives:

  • use the XML datatype to pass all three in as XML; parse the XML (SQL server has functions for this) in the sproc into 3 records
  • use a "table valued parameter" to pass them in a single call - note this needs additional definition at the DB to represent the structured data
  • if the data volume is huge (3000 rather than 3), SqlBulkCopy into a staging table, then run a sproc to move the data into the real table in one set-based operation

Finally, watch out for the "inner platform effect" - it sounds a bit like a DB inside a DB.

share|improve this answer
do you have me a little snippet for the sqltransaction spanning 3 ExecuteNonQuery, please? – Elisa Jan 28 '11 at 15:29
@Lisa I'm sure MSDN has... msdn.microsoft.com/en-us/library/… – Marc Gravell Jan 28 '11 at 15:37

There are several classes that inherit from DbTransaction. The documentation for SqlTransaction has sample code.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.