コード例 #1
0
 public AccessColumn(string actualName, Table table, bool isIdentity, OleDbType oleDbType, int maxLength)
     : base(actualName, table, isIdentity, OleDbToDbTypeConverter.GetDbType(oleDbType), maxLength)
 {
     _OleDbType = oleDbType;
 }
コード例 #2
0
 public AccessColumn(string actualName, Table table, OleDbType oleDbType) :
     base(actualName, table, OleDbToDbTypeConverter.GetDbType(oleDbType))
 {
     _OleDbType = oleDbType;
 }