Esempio n. 1
0
 public Column(string name, string type, bool nullable, Default defaultValue)
 {
     Name = name;
     Type = type;
     Default = defaultValue;
     IsNullable = nullable;
 }
Esempio n. 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;
 }
Esempio n. 3
0
 public Column(string name, string type, int length, bool nullable, Default defaultValue)
     : this(name, type, nullable, defaultValue)
 {
     Length = length;
 }
Esempio n. 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;
		}
Esempio n. 5
0
		public Column(string name, string type, int length, bool nullable, Default defaultValue)
			: this(name, type, nullable, defaultValue) {
			Length = length;
		}