[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
USAGE
   signed int scddrundel(
           signed int handle,
           signed long recno );

PROTOTYPE IN
   sc_base.h

DESCRIPTION
  scddrundel will remove the 'deleted' flag from the data record specified
  by recno.

EXAMPLE
   #include <stdio.h>
   #include <softc.h>
   #include <sc_base.h>

   void main()
   {
     int dbf;

     scdinit(20,0);
     if (scddopenx(&dbf,"TOC.DBF",0) == SC_SUCCESS) {
       scddrundel(dbf,1L);
       scddrget(dbf,1L);
       puts(scemsg());
       scddclose(dbf);
     }
     scdterm();
   }

See Also: scddrdel
This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson