Synchronization code

This commit is contained in:
sunkaixuan
2024-03-14 15:37:30 +08:00
parent 61dcabb758
commit b84df0e2b3
2 changed files with 12 additions and 2 deletions

View File

@@ -362,7 +362,12 @@ WHERE table_name = '" + tableName + "'");
}
public override bool CreateDatabase(string databaseDirectory = null)
{
throw new NotSupportedException();
if (this.Context.Ado.IsValidConnection())
{
return true;
}
Check.ExceptionEasy("dm no support create database ", "达梦不支持建库方法,请写有效连接字符串可以正常运行该方法。");
return true;
}
public override bool CreateDatabase(string databaseName, string databaseDirectory = null)
{

View File

@@ -398,7 +398,12 @@ WHERE table_name = '"+tableName+"'");
}
public override bool CreateDatabase(string databaseName, string databaseDirectory = null)
{
throw new NotSupportedException();
if (this.Context.Ado.IsValidConnection())
{
return true;
}
Check.ExceptionEasy("Oracle no support create database ", "Oracle不支持建库方法请写有效连接字符串可以正常运行该方法。");
return true;
}
public override bool AddRemark(EntityInfo entity)
{