OracleVector(vectorValues)

This constructor creates an instance of the OracleVector class with a vector in the float[].

Declaration

// C#
public OracleVector(float[] vectorValues);

Parameters

vectorValues

A float[] that represents a vector.

Exceptions

ArgumentNullException - The parameter is null.

Remarks

The ProviderType is OracleDbType.Vector_Float32.

If the vector parameter has a length of zero, then the constructed instance will have null value and IsNull will be true.