Table of Contents

Class MissingSQLTypeException

Namespace
CMS.DataEngine
Assembly
CMS.DataEngine.dll

Exception raised when unsupported SQL type is encountered.

public class MissingSQLTypeException : Exception
Inheritance
object
Exception
MissingSQLTypeException
Extension Methods

Constructors

MissingSQLTypeException(string, string, string, string)

Constructor

public MissingSQLTypeException(string message, string columnName, string currentSqlType, string recommendedSqlType)

Parameters

message string

Message text

columnName string

Column name

currentSqlType string

Unsupported type

recommendedSqlType string

Supported type

Properties

ColumnName

Gets or sets table column name.

public string ColumnName { get; set; }

Property Value

string

RecommendedType

Gets or sets supported SQL type.

public string RecommendedType { get; set; }

Property Value

string

UnsupportedType

Gets or sets unsupported SQL type.

public string UnsupportedType { get; set; }

Property Value

string