mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 08:37:25 +08:00
Update pgsql Createdatabase
This commit is contained in:
parent
f97434561d
commit
2460d84a80
@ -385,7 +385,16 @@ WHERE tgrelid = '"+tableName+"'::regclass");
|
||||
}
|
||||
var oldDatabaseName = this.Context.Ado.Connection.Database;
|
||||
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()
|
||||
{
|
||||
DbType = this.Context.CurrentConnectionConfig.DbType,
|
||||
|
Loading…
Reference in New Issue
Block a user