- or
473 results found
-
Option to control which pane/window gets focus after F5/execute.
After typing a query and hitting F5 to execute it, the application's focus switches to the data pane. This is great for some use-cases, but when exploring data, it's often enough to simply see the data - it's not always necessary to interact with it. This use-case is more common for me, and my speed is decreased when having to reach for my mouse after each F5 to put the focus back into the query pane.
Could we get an settings option to control which pane gets focus after executing a query? I'd love to keep my cursor focused on the query pane instead of it switching to the data pane.
Thanks!
-Eric.After typing a query and hitting F5 to execute it, the application's focus switches to the data pane. This is great for some use-cases, but when exploring data, it's often enough to simply see the data - it's not always necessary to interact with it. This use-case is more common for me, and my speed is decreased when having to reach for my mouse after each F5 to put the focus back into the query pane.
Could we get an settings option to control which pane gets focus after executing a query? I'd love to keep my cursor focused on…
1 vote -
tables
Ability to manually group tables into folders
1 vote -
Support INSERT ... RETURNING clause
Support for INSERT .... RETURNING clause, supported my MariaDB, in syntax. Currently dbForge Studio complains when using RETURNING.
1 vote -
Profiling for queries with CTEs
When running the query profiler on a query that contains CTEs, the results are not accurate and the Explain Plan section does not appear in the profiler tree.
To profile queries with CTEs I have to re-write them as subqueries which is a waste of time and makes it more difficult to read.
1 vote -
Trial Version: Edition Selection
I just discovered this product and I am evaluating it for further use. Unfortunately, there doesn't appear to be a way to select a particular edition to evaluate. As an independent developer, I can almost assure you I will not be purchasing the Enterprise version. However, there's no way to "trail" anything short of that and I feel this makes the trial somewhat ineffective: I can't evaluate and consider any version of the product I may actually consider purchasing. I'm guessing the design goal is to convince prospective buyers to spend more money; however, it's more of a turn-off than an encouragement.
My suggestion is to either install an Edition modifier, obviously only available when Trial Mode is active, that allows users to upgrade/downgrade the application to the edition they wish to trial or offer separate installers.
I just discovered this product and I am evaluating it for further use. Unfortunately, there doesn't appear to be a way to select a particular edition to evaluate. As an independent developer, I can almost assure you I will not be purchasing the Enterprise version. However, there's no way to "trail" anything short of that and I feel this makes the trial somewhat ineffective: I can't evaluate and consider any version of the product I may actually consider purchasing. I'm guessing the design goal is to convince prospective buyers to spend more money; however, it's more of a turn-off than…
1 vote -
Trial Version: Edition Selection
I just discovered this product and I am evaluating it for further use. Unfortunately, there doesn't appear to be a way to select a particular edition to evaluate. As an independent developer, I can almost assure you I will not be purchasing the Enterprise version. However, there's no way to "trail" anything short of that and I feel this makes the trial somewhat ineffective: I can't evaluate and consider any version of the product I may actually consider purchasing. I'm guessing the design goal is to convince prospective buyers to spend more money; however, it's more of a turn-off than an encouragement.
My suggestion is to either install an Edition modifier, obviously only available when Trial Mode is active, that allows users to upgrade/downgrade the application to the edition they wish to trial or offer separate installers.
I just discovered this product and I am evaluating it for further use. Unfortunately, there doesn't appear to be a way to select a particular edition to evaluate. As an independent developer, I can almost assure you I will not be purchasing the Enterprise version. However, there's no way to "trail" anything short of that and I feel this makes the trial somewhat ineffective: I can't evaluate and consider any version of the product I may actually consider purchasing. I'm guessing the design goal is to convince prospective buyers to spend more money; however, it's more of a turn-off than…
1 vote -
Change Font Size
Option to set the font size on the database Explorer and other view windows, like the Data Viewer for example, on 4K monitor , the size are very small , don't and using window Scale. mess up all (Version 9.1.8)
1 vote -
Ability to save scripts for comparing tables
In my project, my team needs to compare over 100 tables and they do not see an ability to run saved scripts. Using this feature, they can create the comparison scripts as an one time activity and then run them as needed.
1 vote -
Taskbar item should show up for each floated (query) window
I like to have floating query windows because I run a lot of queries and often would like to compare results in windows next to each other.
Currently these floating (undocked) windows do NOT produce a taskbar item respectively. I think they should. This way I can find my queries instead of losing track of them. One window might cover the others and then I can't see them.
Navicat currently has this feature. dbForge can top Navicat.
Please implement this feature! The taskbar item should show up in the monitor where the floating window currently is located.
Thank you!
1 vote -
Different row color every 3rd row for visual differentiation
All the rows currently have the same color (except any row that is selected).
They should have color differentiation. The "old school" way was to have alternating colors but the smart way is to have a different color every third row, as that is sufficient for eyeballing a long row. Each row will have a different-colored neighbour this way and so there's no confusing each row visually.
Let's do this! Navicat has this formatting implemented, I'm surprised dbForge doesn't have any visual row differentiation.
Thanks!
1 vote -
Facilitate MariaDB 10.11
The current version of DB fORGE STUDIO supports up to MariaDB 10.6 which is limited in respect of JSON functionality. With respect to querying you cannot join a regular table on a JSON path or use methods like JSON_TABLE(). Such efforts result in an error.
1 vote -
Compare data bases lists table as different, thought they are the identical
When comparing databases, we constantly get the tables with no differences. And final script doesn't have any alter statements.
Ex.: the table
CREATE TABLE SecurityContextXSiteGroup (
SecurityContextId INT NOT NULL,
SiteGroupId INT NOT NULL
)
ENGINE = INNODB,
CHARACTER SET utf8mb4,
COLLATE utf8mb40900ai_ci;ALTER TABLE SecurityContextXSiteGroup
ADD UNIQUE INDEX SecurityContextXSiteGroup_UN(SecurityContextId, SiteGroupId);ALTER TABLE SecurityContextXSiteGroup
ADD CONSTRAINT SecurityContextXSiteGourp_FK FOREIGN KEY (SecurityContextId)
REFERENCES SecurityContext(SecurityContextId) ON DELETE CASCADE ON UPDATE CASCADE;ALTER TABLE SecurityContextXSiteGroup
ADD CONSTRAINT SecurityContextXSiteGourpFK1 FOREIGN KEY (SiteGroupId)
REFERENCES SiteGroup(SiteGroupId) ON DELETE CASCADE ON UPDATE CASCADE;The other table ("differs"):
CREATE TABLE SecurityContextXSiteGroup (
SecurityContextId INT NOT NULL,
SiteGroupId INT NOT NULL
)
ENGINE = INNODB,
CHARACTER SET utf8mb4,
COLLATE utf8mb40900ai_ci;ALTER TABLE SecurityContextXSiteGroup
ADD UNIQUE INDEX SecurityContextXSiteGroup_UN(SecurityContextId, SiteGroupId);ALTER TABLE SecurityContextXSiteGroup
ADD CONSTRAINT SecurityContextXSiteGourp_FK FOREIGN KEY (SecurityContextId)
REFERENCES SecurityContext(SecurityContextId) ON DELETE CASCADE ON UPDATE CASCADE;ALTER TABLE SecurityContextXSiteGroup
ADD CONSTRAINT SecurityContextXSiteGourpFK1 FOREIGN KEY (SiteGroupId)
REFERENCES SiteGroup(SiteGroupId) ON DELETE CASCADE ON UPDATE CASCADE;The generated update script:
-- Disable foreign keys
/*!40014 SET @OLDFOREIGNKEYCHECKS=@@FOREIGNKEYCHECKS, FOREIGNKEY_CHECKS=0 */;
SET NAMES 'utf8';
--
-- Set default database
USE client_sol;
--
-- Enable foreign keys
/*!40014 SET FOREIGNKEYCHECKS=@OLDFOREIGNKEY_CHECKS */;
When comparing databases, we constantly get the tables with no differences. And final script doesn't have any alter statements.
Ex.: the table
CREATE TABLE SecurityContextXSiteGroup (
SecurityContextId INT NOT NULL,
SiteGroupId INT NOT NULL
)
ENGINE = INNODB,
CHARACTER SET utf8mb4,
COLLATE utf8mb40900ai_ci;ALTER TABLE SecurityContextXSiteGroup
ADD UNIQUE INDEX SecurityContextXSiteGroup_UN(SecurityContextId, SiteGroupId);ALTER TABLE SecurityContextXSiteGroup
ADD CONSTRAINT SecurityContextXSiteGourp_FK FOREIGN KEY (SecurityContextId)
REFERENCES SecurityContext(SecurityContextId) ON DELETE CASCADE ON UPDATE CASCADE;ALTER TABLE SecurityContextXSiteGroup
ADD CONSTRAINT SecurityContextXSiteGourpFK1 FOREIGN KEY (SiteGroupId)
REFERENCES SiteGroup(SiteGroupId) ON DELETE CASCADE ON UPDATE CASCADE;The other table ("differs"):
CREATE TABLE SecurityContextXSiteGroup (
SecurityContextId INT NOT…1 vote -
Add command palette functionality
I love the command palette in VS Code and Chrome Dev Console. I can press control+p and enter a filename or control+shift+p and type, find and perform common operations.
I'd love to be able to press something like that where I can type in a table name. The list would show me matching tables in all of my connections (or even just my current active connection) and give me options to select from the table, scroll to and select the table in database explorer, open the table editor, etc.
Other common commands could be in the command palette too, like: import, export, backup, restore.I love the command palette in VS Code and Chrome Dev Console. I can press control+p and enter a filename or control+shift+p and type, find and perform common operations.
I'd love to be able to press something like that where I can type in a table name. The list would show me matching tables in all of my connections (or even just my current active connection) and give me options to select from the table, scroll to and select the table in database explorer, open the table editor, etc.
Other common commands could be in the command palette too, like:…1 vote -
Erro no atalho
Erro no atalho , como copiar e colar... ctrl+q para filtrar... f5 para execultar
1 vote -
bug in table edition with graphic table editor
the table designer has a BUG. A table column can have as a default value an internal server variable, in my case @@bindaddress. The correct way to add it (@@bindaddress), and it works. But when the table editor reverses a table definition, it misinterprets these defaults and saves it back wrong.
1 vote -
horizontal toolbars
I see now a vertical tab instead of a horizontal tab as usual. I cannot figure out how to reset the app to its normal behavior. Also how do I enlarge the font of the stored procedures and table editor, it's too small for my old eyes.
1 vote -
Нотация Чена
Добавить концептуальную схему базы данных в нотации Чена
1 vote -
Bug: Filter Editor in Data Tab
When I apply the Filter Editor to a column in the Data tab, the data no longer appears in the Data tab when I reset or modify the filter.
1 vote -
tabs for different datases
dbForge could be the best mysqlmanager.
Unfortunately it has no tabs to group different connections like mysqlworkbench does, what makes it impossible to use.
But for novice devs who are starting with mysql it can help.1 vote -
Font sizing step
Make editor code sizing step smaller, now the font is too small or too big when choosing
1 vote
- Don't see your idea?