Exemplo n.º 1
0
        public bool IsDbExistsDb(string dbName)
        {
            var isDbExist = _sqlExecutorMaster.ExecuteSqlReturningValue <bool>($"SELECT true FROM pg_database WHERE datname = '{dbName}';").Result;

            return(isDbExist);
        }