74 results found
-
BUG: When Copy & Paste As New Record string values are cut off after NON-Iso characters. Just like ä ö ü. even if it is defined as UTF-8
BUG: When Copy & Paste As New Record string values are cut off after NON-Iso characters. Just like ä ö ü. even if it is defined as UTF-8
1 vote -
Add schema name to qualify table in intellisense
I love your intellisense but....
if you are working on a query in a different schema that the join you are making the schema name is to inserted.for example let say you have scha.table1, schb.table2, schb.table3 with and FK defintion between the latter 2 tables
if you are in scha and start typing
select *
from schb.table2
inner joinintellisense wil propose the join with table3 (great) but if you select it it just insert
inner join table3 on .....
instead on schb,table3 on .....1 vote -
Fix start of comment detection at beginning of line
When editing SQL code in dbForge for MySQL 7.3.137, there is a case where it fails to detect the "start of comment" delimiter, and incorrectly intreprets the remaining text on the line as SQL code. This breaks the syntax highlighter, auto-complete, and ability to save stored procedures, functions, etc.
Specifically, when using a double-dash "--" to start a comment in MySQL, it normally requires whitespace after the double-dash to be interpreted as a start of comment delimiter. However, when the double dash is at the beginning of a line, it does not require whitespace.
See: https://dev.mysql.com/doc/refman/5.7/en/ansi-diff-comments.html
Example:
-- This is…
1 vote -
Issue with / character on its own line in a stored proc
I am working with other devs, one of which uses another app for sp's.
In his app he has a weird formatter, but it will place / on there own line as part of a division statement in the sp.
dbForge for MySQL won't even open the sp, says it cannot parse the sp, so I cannot even open the sp to edit it.
1 vote
AdminDevart
(_, Devart)
responded
Could you please provide us the CREATE definition of the stored procedure and let us know what version of dbForge you are using?
You can reply straight to our support system at supportATdevartDOTcom
-
Support reserved keywords and events in MySQL 8.0
dbForge Studio 2019 for MySQL 8.1.22
When sync data between MySQL 5.7.25 and MySQL 8.0.15 and table have field name in reserver keywords, got error like "check syntax ", rank,", fields and tables names must be enclosed in apostrophes.
MySQL 8.0 event like
CREATE
DEFINER = 'username'@'localhost'
EVENT odatabase.eventname
ON SCHEDULE EVERY '1' WEEK
...
in GUI shows as "every '7' (SEVEN) weeks", but DDL is right.1 vote -
it cannot be brought to the foreground
the latest version 7.3.137 once minimized or hiden by another program, after some time it cannot be brought to the foreground. And if you try to close it from the task bar, pops up a box to save any unsaved objects, but there is way to click on the buttons, it like something else is grabbing the input. In that state I saves a process dump. Please let me know how can I uploaded it to you.
1 vote
AdminDevart
(_, Devart)
responded
You could upload the file to our FTP server ftp://ftp.devart.com@anonymous or any other place and provide us the link to download it.
-
Please save the current setting "Current Document" on the Find Dialog
Please save the current setting "Current Document" on the Find Dialog. It defaults to 'All Open Documents' which is very dangerous
1 vote -
output window
1) meanwhile the execution of SQL script file if I click on some other window, ant then return in output window...the output windows shows the first output...and not the (more usefull) last one.
2) please fix it! I have more than one schema. I select the first one. Open a SQL file...launch it. Ok. I open a second SQL file...THE SCHEMA CHANGE without show me the change and dbForge run the SQL script on the second schema!!! Damn it!
1 vote -
There's no effect in the setting of Hightlight SELECT Statement?
I remember this effect is good for the text editor of the SQL,but why is no effect now?
1 vote
AdminDevart
(_, Devart)
responded
Could you please provide us a screenshot explaining this and describe the steps to reproduce the issue in detail?
You can send a reply straight to our support system at supportATdevartDOTcom and alexaATdevartDOTcom
-
there is a BUG on the tool
When you reverse engineer a table with a column defined like this
tdate timestamp NOT NULL DEFAULT date(CURRENTTIMESTAMP) ON UPDATE CURRENTTIMESTAMP
after any change in the table, unrelated, you write the same column as
tdate timestamp NOT NULL DEFAULT 'date(CURRENTTIMESTAMP)' ON UPDATE CURRENTTIMESTAMP
which is wrong, the quotes cannot be there. The modification fails.1 vote
AdminDevart
(_, Devart)
responded
Could you please provide us the CREATE definition of the table and specify what version of dbForge Studio for MySQL you are using?
You can reply straight to our support system at supportATdevartDOTcom
-
view with a UDF calling an aggregate function adds quotes around the aggregate
I'm creating a view using the valid SQL:
SELECT dateAsString(MAX(a.dateStart)) AS LastDate ...
dateAsString is a UDF in my database that accepts a DATE parameter.
The query executes fine. When I save it in a view, though, dbForge changes the query text to:
dateAsString(MAX(a.dateStart))Which, obviously, won't work.
Any thoughts?
0 votes
AdminDevart
(_, Devart)
responded
Could you please provide us the following information:
1. Version of the MySQL server.
2. CREATE definition of the UDF.
3. The assembly file containing the functions called by the UDF. -
Fix Stored Procedure Editor to accept ALTER TABLE xxx RENAME TO yyy
As of dbForge for MySQL version 8.0.40, the Stored Procedure Editor (and Schema Compare) have started to throw errors when trying to open one of our stored procedures. I have traced it down to the presence of an ALTER TABLE command within the procedure.
Here is a simple procedure that will trigger the error:
DELIMITER $$
DROP PROCEDURE IF EXISTS sp_test$$
CREATE DEFINER=
root@localhostPROCEDUREsp_test()
MODIFIES SQL DATA
BEGINALTER TABLE foo RENAME TO bar;
END
$$DELIMITER ;
Specifically, if you try to open the procedure in the procedure editor, dbForge will display the error…
0 votes
AdminDevart
(_, Devart)
responded
Could you please provide us the following information:
1. Server version.
2. Result of the following query:
SHOW CREATE PROCEDURE sp_test;You can send a reply straight to our support system at alexaATdevartDOTcom and supportATdevartDOTcom .
-
scroll 'wheels' do not work
Whether used on my laptop with a touchpad or my desktop with a mouse, dbForge Studio doesn't support scrolling in any window by any means other than clicking or dragging the scroll bar. It will initially scroll for perhaps a second and then it stops.
0 votes
AdminDevart
(_, Devart)
responded
You could try the following instructions http://www.microsoft.com/hardware/en-us/help/windows-8/how-to/mouse/use-partialscroll-mouse
-
Find Invalide Objects
== English ==
The "Find Invalid Objects" wizard lists the following objects in the new version "dbForge Studio for MySQL 9.0.338":Temporary tables are listed in Views as not being found
In Vden Views, the temporary tables are e.g. created with the following command:
WITH RECURSIVETMPas Select .... from ...) Select ... from TMPcrdebug.ENTERMODULE2 is not found. It is searched in the respective database; but not in the cr_debug database.
crdebug.ENTERHANDLER is not found. It is searched in the respective database; but not in the cr_debug database.
No further objects from the cr…
0 votes
- Don't see your idea?