ixVectorOr -- Boolean OR two query vectors together
OnixQueryVectorT ixVectorOr(OnixQueryVectorT Vector1, OnixQueryVectorT Vector2, StatusCodeT *Status)
Vector1 -- Vector of type OnixQueryVectorT
Vector2 -- A second vector of type OnixQueryVectorT.
Status -- A pointer to a value of type StatusCodeT
A vector of type OnixQueryVectorT
ixVectorAnd is use to perform a boolean OR on two query vectors of type OnixQueryVectorT. ixVectorOr returns a query vector which contains a list of all the records which are in Vector1 OR Vector2. This function is useful if you are intending on manually processing your queries in addition to or in substitution to Onix's query method ixProcessQuery. You can see what the results of the boolean OR are by a call to ixNumHits.