mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-19 10:08:19 +08:00
Update Oracle
This commit is contained in:
@@ -274,9 +274,12 @@ namespace SqlSugar
|
||||
#region Methods
|
||||
public override List<string> GetDbTypes()
|
||||
{
|
||||
return this.Context.Ado.SqlQuery<string>(@"SELECT DISTINCT DATA_TYPE
|
||||
var result= this.Context.Ado.SqlQuery<string>(@"SELECT DISTINCT DATA_TYPE
|
||||
FROM DBA_TAB_COLUMNS
|
||||
WHERE OWNER = user ");
|
||||
result.Add("timestamp");
|
||||
result.Add("timestamp");
|
||||
return result.Distinct().ToList();
|
||||
}
|
||||
public override List<string> GetTriggerNames(string tableName)
|
||||
{
|
||||
|
Reference in New Issue
Block a user