OracleVector(vectorString)

This constructor creates an instance of the OracleVector class with the string representation of a vector.

Declaration

// C#
public OracleVector(string vectorString);

Parameters

vectorString

The string representation of a vector

Exceptions

ArgumentException - The string parameter is an invalid string representation of an OracleVector.

ArgumentNullException - The string parameter is null.

Remarks

The ProviderType is OracleDbType.Vector_Float32.

If the parameter value is an empty string, then the constructed instance will have null value and IsNull will be true.