private string GetUnionType(eUnionType eUnionType)
        {
            switch (eUnionType)
            {
            case eUnionType.eutAll:
                return(" UNION ALL ");

            default:
                throw new NotSupportedException(eUnionType.ToString());
            }
        }
Example #2
0
 public void SetFloat(float fValue)
 {
     m_Type = eUnionType.eFloat; m_fValue = fValue;
 }
Example #3
0
 public void SetInt(int iValue)
 {
     m_Type = eUnionType.eInt; m_iValue = iValue;
 }
Example #4
0
    //public string GetString() { Assert.IsTrue(GetUnionType() == eUnionType.eString); return m_sValue; }
    //public object GetObject() { Assert.IsTrue(GetUnionType() == eUnionType.eObject); return m_oValue; }

    public void SetBool(bool bBool)
    {
        m_Type = eUnionType.eBool; m_bValue = bBool;
    }
Example #5
0
 public UnionType(float fValue)
 {
     m_Type = eUnionType.eFloat; m_fValue = fValue;
 }
Example #6
0
 public UnionType(int iValue)
 {
     m_Type = eUnionType.eInt; m_iValue = iValue;
 }
Example #7
0
 public UnionType(bool bBool)
 {
     m_Type = eUnionType.eBool; m_bValue = bBool;
 }