238 results found
-
9.2.105 Bug -- Cannot connect (SSL) to AWS Aurora MySQL
Using identical configuration and credentials, v9.2.34 (and previous versions) connects to my AWS Aurora MySQL instance over SSL. However, the v9.2.105 update does NOT connect. It returns a dialog stating "SSL connection error (2026): The server hello message uses a protocol that was not recognized."
I tried many configurations, but none worked. Uninstalled and downgraded, worked on first try. Updated to latest and repeated test, same failure.
1 vote -
Separate DEFINER and SQL SECURITY in exclude backup options
It only makes sense to combine these two options when SQL SECURITY is set to DEFINER. In the other case (INVOKER) it will cause a problem if the DEFINER is specified when restoring the database to a different environment - user will not exist or will not have the right privileges. "Exclude DEFINER" and "Exclude SQL SECURITY" should be two separate options when backing up a database.
3 votes -
Add ability to compare stored procedures with formatting applied
Having the ability to compare formatted versions of stored procedures would allow to ignore stored procedures that are identical even if they are not formatted exactly the same.
The performance cost would be marginal compared to the usefulness of sorting out equivalent stored procedures.
When comparing code, what it does is what is important.
1 vote -
retreive data with sql
I want to retreive data with editable sql (select statement). It could be implemented now, but I want it in context menu.
1 vote -
Code for CREATE TABLE with MariaDb "system versioning" is not generated correctly.
On a table with system versioning, from context menu I select:
Generate script as > CREATE > To new SQL window.
And the output does not include SYSTEM VERSIONING data at all.
When I run SHOW CREATE TABLE tablename - I get correct information.The same with "Edit table"
(In general it would be nice to set, if "Generate script" uses dbForge engine, or from database "SHOW CREATE TABLE", because output sometimes is drastically different)2 votes -
Code for CREATE TABLE with MariaDb "system versioning" is not generated correctly.
On a table with system versioning, from context menu I select:
Generate script as > CREATE > To new SQL window.
And the output does not include SYSTEM VERSIONING data at all.
When I run SHOW CREATE TABLE tablename - I get correct information.The same with "Edit table"
(In general it would be nice to set, if "Generate script" uses dbForge engine, or from database "SHOW CREATE TABLE", because output sometimes is drastically different)0 votes -
mariadb support system versioned tables
Support system versioned table syntax and settings toggle for tables/columns in mariadb 10.3+
For example
SELECT * FROM mytable FOR SYSTEM_TIME ALL
is not detected as valid syntax, nor is it suggested for code completion
Also need to be able to turn on/off system versioning per column/table in edit table dialog.1 vote -
MariaDB Spider Engine Comment Field Get Trimmed in generated Script when modified
We would store the connection information in comment, there is no problem when we first create the table in SQL script, but once we want to modify and generate the script from dbForge Studio, comment field get trimmed and stored information is missing
1 vote -
copy databaes not works when we try copy from ndbd to innodb cluster
copy databaes not works when we try copy from ndbd to innodb cluster.
if exist options skip engine it will be works1 voteNow, there is an option to ignore an engine.
-
4K Screens, adaption
On 4 K monitors displayed letters appear very small, difficult to read and another slightly bigger problem is, that some notifications and input boxes overlap and hide themselves a bit, f.ex. in IMPORT DATA function.
I currently help myself with changes in screen resolution.1 voteMany bug fixes for 4k monitors are made.
-
dark mode
all my apps have a dark mode.. it hurts my eyes to use yours
1 vote -
Mysql database copy from innodb to ndbcluster is notpossible
Mysql database copy from innodb to ndbcluster is not possible becuase when we copy we can't chose without engine set. In result on cluster each database use same engine as source (not clustered)
1 voteAn option to ignore engines is added.
-
Adding or altering a virtual field is not possible.
i upgraded to mysql 5.7 because i want to profit from the virual field feature. dbforge studio for mysql does not yet implement an editor for formulas in virtual fields.
1 vote -
Support compund statements in MariaDB
In MariaDB (as of 10.1.1), compound statements are allowed outside of stored procedures - see https://mariadb.com/kb/en/library/using-compound-statements-outside-of-stored-programs/.
9 votes -
1 vote
In case you were referring to Static Data in Script Folder, it’s supported
-
enhancment copy mysql database feature
In the present solution, you can't copy databases from MySQL ndbcluster - cluster to standalone MySQL.
not work from cluster to normal server because when we copy
we cant unselect engine type (on normal server not exist ndbcluster engine )4 votesPlease note that you can uncheck the ‘Include Engine’ option.
-
AUTO_INCREMENT
When I insert new record to table using table editor, ( id int(11) UNSIGNED NOT NULL AUTO_INCREMENT ) new field doesn't give the proper ID number. Seems like the editor can't find next free ID on auto increment field
1 vote -
turn off data types in column headings
I dont need data types in column headings, it disturbs me.
3 votesAn option added.
-
Ability to 'column select' like notepad++ and SSMS
Adding column select/typing like in notepad++ and SSMS.
ALT + left mouse button, and drag
1 vote -
Script generation auto_increment bug
When backing up a database or creating CREATE script from a table, the auto_increment attribute is not set on a column which is not defined as a primary key.
eg.
CREATE TABLE wpquestionsformelement (
elementid int(11) NOT NULL AUTOINCREMENT,
formid int(11) NOT NULL,
elementorder int(11) NOT NULL,
elementtypecode varchar(50) NOT NULL,
elementparams varchar(3000) DEFAULT NULL,
questionid int(11) DEFAULT NULL,
attachmentid int(11) DEFAULT NULL,
mandatory bit(1) NOT NULL DEFAULT b'0',
deletedflag tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (formid, elementorder),
INDEX idxwpquestionsformelementelementid (elementid)
)
ENGINE =…1 vote
- Don't see your idea?