OCIBindByPos() : set the dty as SQLT_AFC for the SQL TYPE: NUMBER(10,0)
Oracle Client version: 10.2.0.4.0Oracle Version 11.2.0.3.0
The internal datatype is NUMBER(10,0), our application binds this column as : SQLT_AFC
sqlrc = OCIBindByPos( pStmtHandle, bindp, errhp, n + 1,
pszBindData, iLen, SQLT_AFC, nIndicator, NULL,
NULL, 0, NULL, OCI_DEFAULT );
Is there any potential issue to bind the SQLT_AFC to the NUMBER(10,0) column?
0