dbfree_xlate

Description

Free a pair of character set translation tables.

Syntax

RETCODE *dbfree_xlate(dbproc, xlt_tosrv, xlt_todisp)
 
DBPROCESS    *dbproc;
DBXLATE          *xlt_tosrv;
DBXLATE           *xlt_todisp;

Parameters

dbproc

A pointer to the DBPROCESS structure that provides the connection for a particular front-end/server process. It contains all the information that DB-Library uses to manage communications and data between the front end and server.

xlt_tosrv

A pointer to a translation table used to translate display-specific character strings to the server character strings. The translation table is allocated using dbload_xlate.

xlt_todisp

A pointer to a translation table used to translate server character strings to display-specific character strings. The translation table is allocated using dbload_xlate.

Returns

SUCCEED or FAIL.

Usage

See also

dbload_xlate, dbxlate