Archives

Archives / 2003 / October
  • Richmond, VA .NET UG

    This is a weekly reminder that our first meeting will take place next Thursday - November 6th, at 6:30PM.  The meeting will be held at Fahrenheit Technology (http://www.hottechnology.com).  They are located at the following location in Innsbrook:
     
    4501 Highwoods Parkway, Suite 270
    Glen Allen, VA  23060
    Phone:  804-935-5600
     
    If you have any questions or need more directions, please feel free to let me know.  Again, we will be having two guest speakers, Paul Ballard from INETA (International .NET Association) and Pablo Saez from Microsoft.  Paul will be discussing some different facets of using Windows Forms and Pablo will be talking about cryptography.  Paul may also be talking about some of the exciting stuff that he has found out at the PDC this week (Longhorn!)
     
    Once again, feel free to bring your friends.  We are really trying hard to have a nice turnout for our first meeting.

  • DataAdapter.Update...how to handle inserts into multiple tables

    When users add a new record in our app, we need to do an insert into 5 sql server tables. This insert needs to run in a transaction, and, if one insert fails, we need to do a Rollback on all the Inserts.  The first 4 inserts return keys that are used as part of the last insert.  Meaning, prior to doing the last insert, we need the key values from the first 4 inserts.