conn
is the connection descriptor.
colldesc
is the collection descriptor.
datum
is a value or the address of data to be inserted into the collection. You can pass int2, int4, float for SQLSMFLOAT, and fixed-length user-defined types by value and all other types by reference.
action
determines the orientation of the update. When a collection opens, the current cursor position is before the first element. Possible action values follow:
MI_CURSOR_NEXT
update the next element after the current cursor position
MI_CURSOR_PRIOR
update the element before the current cursor position
MI_CURSOR_FIRST
update the first element
MI_CURSOR_LAST
update the last element
MI_CURSOR_ABSOLUTE
update the element at position jump
MI_CURSOR_RELATIVE
move jump elements from the current position and then update the current element
MI_CURSOR_CURRENT
update the element at the current cursor position
jump
is the relative or absolute offset in the collection for lists only. If action is not MI_CURSOR_ABSOLUTE or MI_CURSOR_RELATIVE when jump is specified, the function raises an exception and returns MI_NULL_VALUE.
For absolute positioning, a jump value of 1 is the first element.
1
Yes