bcp_getcolfmt

ODBC and SQL Server

ODBC and SQL Server

bcp_getcolfmt

Used to find the column format property value.

Syntax

RETCODE bcp_getcolfmt (
HDBC
hdbc,
INT
field,
INT
property,
void*
pValue,
INT
cbvalue,
INT* pcbLen);

Arguments

hdbc

Is the bulk copy-enabled ODBC connection handle.

field

Is the column number for which the property is retrieved.

property

Is one of the property constants.

pValue

Is the pointer to the buffer in which to retrieve the property value.

cbValue

Is the length of the property buffer in bytes.

pcbLen

Pointer to length of the data that is being returned in the property buffer.

Returns

SUCCEED or FAIL.

Remarks

Column format property values are listed in the bcp_setcolfmt topic. The column format property values are set by calling the bcp_setcolfmt function, and the bcp_getcolfmt function is used to find the column format property value.

See Also

bcp_setcolfmt