Add operand to the SQL term
| Return Type | Function name | Arguments |
|---|---|---|
| hzEcode | _hz_sqle_form::AddOperand | (_hz_sqle_term*,) |
Declared and defined in file: hdbIndex.cpp
Function Logic:
Function body:
hzEcode _hz_sqle_form::AddOperand (_hz_sqle_term* pOperand)
{
// Add operand to the SQL term
if (!m_pA)
{ m_pA = pOperand ; return E_OK ; }
if (!m_pB)
{ m_pB = pOperand ; return E_OK ; }
return E_DUPLICATE ;
}