You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// If data_type identifies a character or bit string type, the declared maximum length; null for all other data types or if no maximum length was declared.
16
+
/// </summary>
17
+
publicint?CharacterMaximumLength{get;set;}
18
+
19
+
/// <summary>
20
+
/// Gets or sets the schema name.
21
+
/// </summary>
22
+
publicstringTableSchema{get;set;}
23
+
24
+
/// <summary>
25
+
/// Gets or sets the table name.
26
+
/// </summary>
27
+
publicstringTableName{get;set;}
28
+
29
+
/// <summary>
30
+
/// Gets or sets the column name.
31
+
/// </summary>
32
+
publicstringColumnName{get;set;}
33
+
34
+
/// <summary>
35
+
/// Gets or sets the data type. Data type of the column, if it is a built-in type, or ARRAY if it is some array (in that case, see the view element_types), else USER-DEFINED (in that case, the type is identified in udt_name and associated columns). If the column is based on a domain, this column refers to the type underlying the domain (and the domain is identified in domain_name and associated columns).
36
+
/// </summary>
37
+
publicstringDataType{get;set;}
38
+
39
+
/// <summary>
40
+
/// Gets or sets the is nullable string.
41
+
/// </summary>
42
+
publicstringIsNullable{get;set;}
43
+
44
+
/// <summary>
45
+
/// Gets or sets the column default.
46
+
/// </summary>
47
+
publicstringColumnDefault{get;set;}
48
+
49
+
/// <summary>
50
+
/// Gets or sets the is identity string. YES or NO.
0 commit comments