• capture number of rows to be updated (Using Acc2000, with DAO)

    Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » capture number of rows to be updated (Using Acc2000, with DAO)

    Author
    Topic
    #410272

    Pls help.

    how can I capture how many rows I am updating within my UPDATE code.

    “You are about to update 0 rows” then
    do this
    else
    do that

    (Nice to work with warnings off also!)

    Many thanks,

    J

    Viewing 5 reply threads
    Author
    Replies
    • #880459

      Use a dcount function with the same where clause as in the update query.

    • #880460

      Use a dcount function with the same where clause as in the update query.

    • #880465

      I think you’d have to open a recordset based on the equivalent SELECT or SELECT DISTINCT code, then get the RecordCount of the recordset. The count will not be accurate unless you move to the end of the recordset first, but it will tell you if there are records to be updated or not.

    • #880466

      I think you’d have to open a recordset based on the equivalent SELECT or SELECT DISTINCT code, then get the RecordCount of the recordset. The count will not be accurate unless you move to the end of the recordset first, but it will tell you if there are records to be updated or not.

    • #880471

      Use a DAO database object

      dim db as DAO.Database
      set db = currentdb

      Then use the EXECUTE method of the database object to do the update

      db.execute(“UPDATE … “)

      Then call the RECORDSAFFECTED property of the database object

      msgbox(“Updated ” & db.recordsaffected & ” records.”)

      This should work.

      You could encapsulate the operation in a transaction maybe to rollback if need be?

    • #880472

      Use a DAO database object

      dim db as DAO.Database
      set db = currentdb

      Then use the EXECUTE method of the database object to do the update

      db.execute(“UPDATE … “)

      Then call the RECORDSAFFECTED property of the database object

      msgbox(“Updated ” & db.recordsaffected & ” records.”)

      This should work.

      You could encapsulate the operation in a transaction maybe to rollback if need be?

    Viewing 5 reply threads
    Reply To: capture number of rows to be updated (Using Acc2000, with DAO)

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: