Product Documentation

c-treeDB API API for C

Previous Topic

Next Topic

ctdbClearAllFieldDefaultValue

Clear the default value associated with all fields in a table.

DECLARATION

CTDBRET ctdbClearAllFieldDefaultValue(CTHANDLE Handle);

DESCRIPTION

ctdbClearAllFieldDefaultValue() clears the default value associated with all fields in a table. The default date and time types for each field are also reset to the default values of CTDATE_MDCY and CTIME_HMS respectively. Handle must be a table handle.

RETURN

Value

Symbolic Constant

Explanation

0

NO_ERROR

No error occurred.

See Appendix A for a complete listing of valid c-tree Plus error values.

EXAMPLE

/* clear all default field values *.

if (ctdbClearAllFieldDefaultValue(hTable) != CTDBRET_OK)

printf("ctdbClearAllFieldDefaultValue failed\n");

SEE ALSO

ctdbSetFieldDefaultValue(), ctdbGetFieldDefaultValue(), ctdbClearFieldDefaultValue(), ctdbIsFieldDefaultValueSet(), ctdbSetFieldDefaultDateTimeType(), ctdbGetFieldDefaultDateType(), ctdbGetFieldDefaultTimeType()

TOCIndex