Beispiel #1
0
 public Column(string name, string type, bool nullable, Default defaultValue)
 {
     Name = name;
     Type = type;
     Default = defaultValue;
     IsNullable = nullable;
 }
Beispiel #2
0
 public Column(string name, string type, byte precision, int scale, bool nullable, Default defaultValue)
     : this(name, type, nullable, defaultValue)
 {
     Precision = precision;
     Scale     = scale;
 }
Beispiel #3
0
 public Column(string name, string type, int length, bool nullable, Default defaultValue)
     : this(name, type, nullable, defaultValue)
 {
     Length = length;
 }
Beispiel #4
0
		public Column(string name, string type, byte precision, int scale, bool nullable, Default defaultValue)
			: this(name, type, nullable, defaultValue) {
			Precision = precision;
			Scale = scale;
		}
Beispiel #5
0
		public Column(string name, string type, int length, bool nullable, Default defaultValue)
			: this(name, type, nullable, defaultValue) {
			Length = length;
		}