Table of Contents

Class SQLDatabaseServiceSettings

Namespace
FoundationaLLM.Vectorization.Services.DataSources.Configuration.SQLDatabase
Assembly
FoundationaLLM.Vectorization.Engine.dll

Provides configuration settings to initialize an SQL database service.

public record SQLDatabaseServiceSettings : IEquatable<SQLDatabaseServiceSettings>
Inheritance
SQLDatabaseServiceSettings
Implements
Inherited Members
Extension Methods

Properties

ConnectionString

The connection string used for authentication to the SQL database with the data to be vectorized.

public required string ConnectionString { get; set; }

Property Value

string

MultiPartQuery

Optional: When not vectorizing an entire table, this query is used to retrieve the data to be vectorized.

public string? MultiPartQuery { get; set; }

Property Value

string

MultiPartQueryConnectionString

Optional: The connection string used for authentication to the SQL database when using a multi-part query if it is different from ConnectionString.

public string? MultiPartQueryConnectionString { get; set; }

Property Value

string