DataSourceColumnConfiguration

data class DataSourceColumnConfiguration(val changeDetectingColumns: List<String>, val documentDataColumnName: String, val documentIdColumnName: String, val documentTitleColumnName: String? = null, val fieldMappings: List<DataSourceToIndexFieldMapping>? = null)

Constructors

Link copied to clipboard
constructor(changeDetectingColumns: List<String>, documentDataColumnName: String, documentIdColumnName: String, documentTitleColumnName: String? = null, fieldMappings: List<DataSourceToIndexFieldMapping>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

One to five columns that indicate when a document in the database has changed.

Link copied to clipboard

The column that contains the contents of the document.

Link copied to clipboard

The column that provides the document's identifier.

Link copied to clipboard

The column that contains the title of the document.

Link copied to clipboard

An array of objects that map database column names to the corresponding fields in an index. You must first create the fields in the index using the UpdateIndex operation.