Update pgsql Createdatabase

This commit is contained in:
sunkaixuan 2025-04-01 08:40:58 +08:00
parent f97434561d
commit 2460d84a80

View File

@ -385,7 +385,16 @@ WHERE tgrelid = '"+tableName+"'::regclass");
} }
var oldDatabaseName = this.Context.Ado.Connection.Database; var oldDatabaseName = this.Context.Ado.Connection.Database;
var connection = this.Context.CurrentConnectionConfig.ConnectionString; var connection = this.Context.CurrentConnectionConfig.ConnectionString;
connection = connection.Replace(oldDatabaseName, "postgres"); if (Regex.Matches(connection, oldDatabaseName).Count > 1)
{
var builder = new Npgsql.NpgsqlConnectionStringBuilder(connection);
builder.Database = "postgres";
connection = builder.ConnectionString;
}
else
{
connection = connection.Replace(oldDatabaseName, "postgres");
}
var newDb = new SqlSugarClient(new ConnectionConfig() var newDb = new SqlSugarClient(new ConnectionConfig()
{ {
DbType = this.Context.CurrentConnectionConfig.DbType, DbType = this.Context.CurrentConnectionConfig.DbType,