CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Buffering in VB

  1. #1
    Join Date
    Aug 1999
    Posts
    3

    Buffering in VB

    Hi
    In VB there is any concept like buffering before i put them in the database ?
    Also I tried to Use BeginTrans and CommitTrans using ADOData Control ,but the moment i did recordset.update ,the rollbackTrans didnt work . The Transaction was valid but the roll back at the database did not work.
    Could some one tell me how do i implement the above , in any other way ??..

    Quick help would be really appreciated.

    Thanks a lot,
    Arunesh.




  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: Buffering in VB

    instead of using the ADO data control you can write ADO code as in

    conn.BeginTrans
    conn.Execute ....
    conn.CommitTrans or conn.rollback...



    That does work.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured