
Click above to get retro games delivered to your door ever month!
X-Hacker.org- SoftC Database Library v2.1 Guide - usage
[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
USAGE
int scddsize(
int handle,
long *recsused );
PROTOTYPE IN
sc_base.h
DESCRIPTION
scddsize gets the number of records recsused in the data file. This
number will include all records inactive as well as active.
EXAMPLE
#include <stdio.h>
#include <softc.h>
#include <sc_base.h>
void main()
{
int dbf;
long recsused;
scdinit(20,0);
if (scddopenx(&dbf,"TOC.DBF",0) == SC_SUCCESS) {
scddsize(dbf,&recsused);
printf("%ld",recsused);
scddclose(dbf);
}
scdterm();
}
Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson