Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- SoftC Database Library v2.1 Guide - usage http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
USAGE
   int scddunlock(
           int handle );

PROTOTYPE IN
   sc_base.h

DESCRIPTION
   scddunlock will unlock the data file/record for shared use by other
   stations. This function should be used immediately after writing to
   all required data, index and memo files. File sharing is enabled by
   opening the data file with SC_SHARED in the command switch. Any
   associated index and memo files should also be opened with SC_SHARED
   in the command switch.

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

   void main()
   {
     int dbf, ndx;
     char *key;
     long record;
     double length = 2367, attribute = 1;

     scdinit(20,0);
     if (scddopenx(&dbf,"TOC.DBF",SC_SHARED) == SC_SUCCESS) {
       if (scdnopenx(&ndx,"TOCNAME.NDX",SC_SHARED) == SC_SUCCESS) {
         scddfput(dbf,0,"ABC.XYZ");
         scddfput(dbf,1,&length);
         scddfput(dbf,2,"07/21/90");
         scddfput(dbf,3,"20:01:45");
         scddfput(dbf,4,&attribute);
         scdnkmake(dbf,ndx,&key);
         scddlock(dbf);
         scddrput(dbf,&record,SC_ADD);
         scdnkadd(ndx,key,record);
         scddunlock(dbf);
         free(key);
         scdnclose(ndx);
       }
       scddclose(dbf);
     }
     scdterm();
   }

See Also: scddopenx scddlock scddrlock

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson