mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-20 02:29:39 +08:00
Update Oracle
This commit is contained in:
@@ -274,9 +274,12 @@ namespace SqlSugar
|
|||||||
#region Methods
|
#region Methods
|
||||||
public override List<string> GetDbTypes()
|
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
|
FROM DBA_TAB_COLUMNS
|
||||||
WHERE OWNER = user ");
|
WHERE OWNER = user ");
|
||||||
|
result.Add("timestamp");
|
||||||
|
result.Add("timestamp");
|
||||||
|
return result.Distinct().ToList();
|
||||||
}
|
}
|
||||||
public override List<string> GetTriggerNames(string tableName)
|
public override List<string> GetTriggerNames(string tableName)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user