Method SetBlobColumnBase64
- Namespace
- YndigoBlue.Velocity.Model
- Assembly
- YndigoBlue.Velocity.dll
SetBlobColumnBase64(string)
Configures a blob column to be exported as a Base64-encoded string in the CSV cell. Applies globally to any table that has a column with this name.
public void SetBlobColumnBase64(string columnName)
Parameters
columnNamestring
SetBlobColumnBase64(string, string)
Configures a blob column to be exported as a Base64-encoded string in the CSV cell, scoped to a specific table. Takes precedence over the global overload when the same column name exists in multiple tables with different handling requirements.
public void SetBlobColumnBase64(string tableName, string columnName)
Parameters
SetBlobColumnBase64(string, string, string)
Configures a blob column to be exported as a Base64-encoded string in the CSV cell, scoped to a specific schema and table. Takes precedence over both the table-scoped and global overloads — use this when exporting a database where multiple schemas contain tables with the same name but different blob handling requirements.
public void SetBlobColumnBase64(string schemaName, string tableName, string columnName)