up vote 2 down vote favorite
share [g+] share [fb]

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 );
link|improve this question

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

3 Answers

up vote 9 down vote accepted
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|improve this answer
Is someone actually downvoting this? – MusiGenesis Sep 30 '09 at 15:38
Just a note - the parameters need to be cleared on the DbCommand, answer updated, rest looks good, thanks – JL. Sep 30 '09 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 '09 at 17:10
Cool stuff, good guess :) and who ever downvoted, no reason to downvote, the code works! – JL. Sep 30 '09 at 17:26
This might work but the performance will get much worse as the number of files goes up. Once you find you have performance problems, take a look at Erich's answer – Rob Fonseca-Ensor Feb 3 '10 at 11:52
feedback

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|improve this answer
okay, this is just awesome. I have several apps which would immediately benefit from this. Thanks! – Chris Lively Sep 30 '09 at 16:24
feedback
db.AddInParameter(cmd, "xxx", DbType.Int32);
db.AddInParameter(cmd, "xxx", DbType.Int32);
db.AddInParameter(cmd, "xxx", DbType.Int32);
int id = 0;
db.AddOutParameter(cmd, "ccc", DbType.Int32, id);

foreach (xxx item in xxxx)
{
    db.SetParameterValue(cmd, "xxx", item.InvestmentProgramId);
    db.SetParameterValue(cmd, "xxx", item.CompanyId);
    db.ExecuteNonQuery(cmd);
    id = (int)db.GetParameterValue(cmd, "ccc");
    item.Id = id;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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