/// <summary>
        /// Возвращает значение параметра типа TListInt32
        /// </summary>
        protected TListInt32 AsTListInt32(String AName)
        {
            Object LValue;
              if (!FData.TryGetValue(AName, out LValue)) return null;

              try
              {
            if(LValue is SqlUdt)
              LValue = ((SqlUdt)LValue).CreateUdtObject(true);

            if (LValue is TListInt32)
              return (TListInt32)LValue;
            else
            {
              TListInt32 LResult = new TListInt32();
              if (LValue is SqlString)
            LResult.FromString(((SqlString)LValue).Value);
              else if (LValue is SqlChars)
            LResult.FromString(((SqlChars)LValue).ToString());
              //else if (LValue is Sql.SqlAnsiString) return new SqlBinary(((Sql.SqlAnsiString)LValue).Buffer);
              else
              {
            System.IO.BinaryReader r;
            if (LValue is SqlBytes)
              r = new System.IO.BinaryReader(((SqlBytes)LValue).Stream);
            else if (LValue is SqlBinary)
              r = new System.IO.BinaryReader(new System.IO.MemoryStream(((SqlBinary)LValue).Value));
            else
              throw new Exception();
            LResult.Read(r);
              }

              return LResult;
            }
              }
              catch
              {
            throw new Exception(String.Format("Не удалось сконвертировать значение '{0}' параметра '{1}' в тип TListInt32", Sql.ValueToString(LValue, Sql.ValueDbStyle.Text), AName));
              }
        }
    public static TListInt32 Parse(SqlString AString)
    {
        if (AString.IsNull) return null;

        TListInt32 LResult = new TListInt32();
        LResult.FromString(AString.Value);

        return LResult;
    }