Value

This property returns a .NET numeric array representing the sparse vector values at the non-zero indices.

Declaration

// C#
public Array Value {get;}

Property Value

A .NET numeric array representing the sparse vector values at the non-zero indices. This array can be Int16[], float[], or double[] depending on the sparse vector's numeric format.

Exceptions

OracleNullValueException - The current instance has a null value.

ObjectDisposedException - The object is already disposed.

Remarks

This property's return type varies depending on the sparse vector's numeric format.

Numeric Format Return Type

OracleDbType.Vector_Int8

short[]

OracleDbType.Vector_Float32

float[]

OracleDbType.Vector_Float64

double[]