Value

This property returns a .NET array representing the vector.

Declaration

// C#
public Array Value {get;}

Property Value

A .NET array representing the vector. This array can be Int16[], float[], double[], or byte[] depending on the vector numeric format.

Exceptions

OracleNullValueException - The current instance has a null value.

ObjectDisposedException - The object is already disposed.

Remarks

The property return type varies based on the vector numeric format.

Numeric Format Return Type

OracleDbType.Vector_Int8

short[]

OracleDbType.Vector_Float32

float[]

OracleDbType.Vector_Float64

double[]

OracleDbType.Vector_Binary

byte[]