mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2026-02-27 16:50:33 +08:00
Update GetTypes
This commit is contained in:
@@ -272,8 +272,8 @@ namespace SqlSugar
|
||||
var result = this.Context.Ado.SqlQuery<string>(@"SELECT DISTINCT DATA_TYPE
|
||||
FROM DBA_TAB_COLUMNS
|
||||
WHERE OWNER = user ");
|
||||
result.Add("timestamp");
|
||||
result.Add("timestamp");
|
||||
result.Add("TIMESTAMP");
|
||||
result.Add("NCLOB");
|
||||
return result.Distinct().ToList();
|
||||
}
|
||||
public override List<string> GetTriggerNames(string tableName)
|
||||
|
||||
@@ -277,8 +277,8 @@ namespace SqlSugar
|
||||
var result= this.Context.Ado.SqlQuery<string>(@"SELECT DISTINCT DATA_TYPE
|
||||
FROM DBA_TAB_COLUMNS
|
||||
WHERE OWNER = user ");
|
||||
result.Add("timestamp");
|
||||
result.Add("timestamp");
|
||||
result.Add("TIMESTAMP");
|
||||
result.Add("NCLOB");
|
||||
return result.Distinct().ToList();
|
||||
}
|
||||
public override List<string> GetTriggerNames(string tableName)
|
||||
|
||||
Reference in New Issue
Block a user