Class SQLDatabaseServiceSettings
- 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
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
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; }