vote up 1 vote down star

I have a collection of files, for each file I am going to call an SP using Dbcommand in a transaction.

for example:

  DbCommand insert = db.GetStoredProcCommand("Insert");
  db.AddInParameter(insert, "FileName", System.Data.DbType.String, 
      ID + ".xml");
  db.ExecuteNonQuery(insert, transaction);

My question is how do I put this in a loop?

The answer below doesn't work, but thanks for the otherwise great code sample. Problem is db doesn't have a Parameters collection that you can manipulate. check...

http://msdn.microsoft.com/en-us/library/microsoft.practices.enterpriselibrary.data.sql.sqldatabase%5Fmembers%28BTS.10%29.aspx

I am declaring my database like this:

SqlDatabase db = new SqlDatabase(this.ConnectionString );
flag

What C# type is the collection of files? – Mark B Sep 30 at 15:27
Standard fileInfo[] – JL Sep 30 at 16:24

2 Answers

vote up 8 vote down check
DbCommand insert = db.GetStoredProcCommand("Insert");
foreach (string ID in myIDs)
{
    insert.Parameters.Clear();
    db.AddInParameter(insert, "FileName", System.Data.DbType.String, 
        ID + ".xml");
    db.ExecuteNonQuery(insert, transaction);
}

You could also just add the Parameter once outside the loop, and then change its Value inside the loop. Half of one, six dozen of the other.

link|flag
Is someone actually downvoting this? – MusiGenesis Sep 30 at 15:38
Just a note - the parameters need to be cleared on the DbCommand, answer updated, rest looks good, thanks – JL Sep 30 at 16:24
@JL: I wasn't sure what classes you were using in your sample - I usually use the System.Data.SqlClient namespace. I'd never seen an "AddInParameter" method on anything before. – MusiGenesis Sep 30 at 17:10
Cool stuff, good guess :) and who ever downvoted, no reason to downvote, the code works! – JL Sep 30 at 17:26
vote up 2 vote down

If you are on SQL Server 2008 (many aren't yet...) you can use table variables! Check out: http://blogs.techrepublic.com.com/datacenter/?p=168

That way, you can do the entire set of files in 1 command, saving a bunch of time.

Alternatively, you could join all of the file names with a separator character, then split them on the SQL stored procedure.

The advantage is you minimize the transactions to the DB, the downside is the programming isn't as straight forward.

link|flag
okay, this is just awesome. I have several apps which would immediately benefit from this. Thanks! – Chris Lively Sep 30 at 16:24

Your Answer

Get an OpenID
or

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