Function : ID Table

IDDeleteAll - Deletes all IDs from an ID Table.
----------------------------------------------------------------------------------------------------------

#include <idtable.h>

STATUS LNPUBLIC IDDeleteAll(
DHANDLE hTable
);

Description :

This function takes a handle to an ID Table and deletes all the IDs in it.

Parameters :

Sample Usage :


               if (IDEntries(deltable_handle))

              {   /* Using NULL in 3rd arg avoids ERR_REMOTE_UNID */

                   if (error_status = NSFDbDeleteNotes (
                                           db_handle_src,
                                           deltable_handle,
                                           NULL))
                       goto Exit;

                   /* adjust del_count exit of while(IDScan) */

                   printf("\n%s: %lu Notes in %s\n",
                          (del_count <= del_max)? "Deleting"
                                                : "Deleted",
                          (del_count <= del_max)? 50
                                                : del_count-1,
                          src_name);
                   if (error_status = IDDeleteAll(deltable_handle))
                       goto Exit;
               }


See Also :

IDCreateTable
----------------------------------------------------------------------------------------------------------