Class MissingSQLTypeException
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Exception raised when unsupported SQL type is encountered.
public class MissingSQLTypeException : Exception
- Inheritance
-
objectExceptionMissingSQLTypeException
- Extension Methods
Constructors
MissingSQLTypeException(string, string, string, string)
Constructor
public MissingSQLTypeException(string message, string columnName, string currentSqlType, string recommendedSqlType)
Parameters
message
stringMessage text
columnName
stringColumn name
currentSqlType
stringUnsupported type
recommendedSqlType
stringSupported 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