CDynamicParameterAccessor::GetParamIO
判斷指定的參數是否為輸入或輸出參數。
bool GetParamIO(
DBORDINAL nParam,
DBPARAMIO * pParamIO
) const throw( );
參數
nParam
[in]參數數目 (從 1 的位移)。 參數 0 保留給傳回值。 參數數目是根據其順序的 SQL 或預存程序呼叫中參數的索引。 請參閱 SetParam 的範例。pParamIO
變數的指標,變數包含 DBPARAMIO (輸入或輸出) 指定參數型別。 其定義,如下所示:typedef DWORD DBPARAMIO;
enum DBPARAMIOENUM
{ DBPARAMIO_NOTPARAM = 0,
DBPARAMIO_INPUT = 0x1,
DBPARAMIO_OUTPUT = 0x2
};
傳回值
傳回 ,則為 true 成功或 ,則為 false 錯誤所致。
需求
標頭: atldbcli.h