public override DbTypeBase ToGenericType() { var res = new DbTypeText(); res.SetSpecificAttribute("oracle", "subtype", "long"); return(res); }
public override DbTypeBase ToGenericType() { DbTypeText res = new DbTypeText(); res.SetSpecificAttribute("mysql", "subtype", SqlName); return(res); }
protected override DbTypeBase ToGenericTypeNoArray() { DbTypeText res = new DbTypeText(); res.SetSpecificAttribute("pgsql", "subtype", SqlName); return(res); }
public override DbTypeBase ToGenericType() { DbTypeText res = new DbTypeText(); res.IsUnicode = false; res.SetSpecificAttribute("effiproz", "maxbytes", MaxBytes.ToString()); return(res); }
public override DbTypeBase ToGenericType() { DbTypeText res = new DbTypeText(); res.IsUnicode = false; res.SetSpecificAttribute("mysql", "subtype", "longtext"); return(res); }