Quantcast
Channel: Toad for MySQL
Viewing all 1315 articles
Browse latest View live

Forum Post: RE: can not show explain plan with toad for mysql

$
0
0
This is fixed. I will see if I can get it into the next Beta.

Forum Post: RE: events manager

$
0
0
Absolutely second this as well. It has triggers, procedures, functions and so forth but no events.

Forum Post: RE: is there any plan to add event management feature??

$
0
0
I would love the ability to add, modify and remove events. I can do everything else I need with Toad and this is the last item I absolutely require.

Forum Post: RE: Toad for MySQL v7.8.0.351 Beta is now available

$
0
0
I installed ToadForMySQL_Beta_7.8.0.401 but still when I open Toad I get "The BETA period has expired..."

Forum Post: Toad for MySQL v7.9.0.472 Beta is now available

$
0
0
A new beta for Toad for MySQL has been posted and is now available for immediate download. Just head over to the download section and get it right now! http://www.toadworld.com/products/toad-for-mysql/toad_for_mysql_beta_program

Forum Post: new connection, password contains " character, report error as picture show

$
0
0
new connection, password contains " character, report error as picture show System.ArgumentException 从索引 18 处开始,初始化字符串的格式不符合规范。 (-- trans to english: The format of the initialization string does not conform to the specification. ) Stack Trace: 在 System.Data.Common.DbConnectionOptions.GetKeyValuePair(String connectionString, Int32 currentPosition, StringBuilder buffer, Boolean useOdbcRules, String& keyname, String& keyvalue) 在 System.Data.Common.DbConnectionOptions.ParseInternal(Hashtable parsetable, String connectionString, Boolean buildChain, Hashtable synonyms, Boolean firstKey) 在 System.Data.Common.DbConnectionOptions..ctor(String connectionString, Hashtable synonyms, Boolean useOdbcRules) 在 System.Data.Common.DbConnectionStringBuilder.set_ConnectionString(String value) 在 MySql.Data.MySqlClient.MySqlConnectionStringBuilder..ctor(String connStr) 在 MySql.Data.MySqlClient.MySqlConnection.set_ConnectionString(String value) 在 MySql.Data.MySqlClient.MySqlConnection..ctor(String connectionString) 在 Quest.Toad.MySQL.MySQLConnection.CreateConnection() 在 Quest.Toad.MySQL.MySQLConnection.OpenInitialTestConnection() 在 Quest.Toad.MySQL.MySQLConnection.DoBeforeConnect() 在 Quest.Toad.Db.Connection.Connect(Boolean notify) 在 Quest.Toad.Db.Provider.BackgroundConnector.CreateBackgroundConnection()

Forum Post: Where/how to download older versions of Toad for MySQL?

$
0
0
When I go to web page http://www.toadworld.com/m/freeware/1469 then I can only download the newest version of Toad for MySQL. Since the newest version freezes (see other posting) at second start I want to install an older version. Is there a way to download older versions somewhere? Peter

Forum Post: Bug: MySQL for Toad v7.7.0.579 always freezes cursor/desktop at second (!) start

$
0
0
After a longer time I revert back to Toad for MySQL. I downloaded the newest version and installed it on 64bit Win 7. The first start worked fine. However if I close the setup/connection wizard and Toad main window and start it later again then the whole desktop freezes. Main Toad window and connection dialog is shown again but I cannot move the cursor any more. The only solution is then to Ctrl+Alt+Del and to log out + re-login into my Win7 account. This bug is reproducable. Whats the reason? Yes, I re-installed Toad again but the error remains. Peter

Forum Post: RE: Where/how to download older versions of Toad for MySQL?

$
0
0
Here is a link to c|net with version 7.3.1. http://download.cnet.com/Toad-for-MySQL/3000-10254_4-10567178.html Hope this helps.

Forum Post: Why is Toad.exe starting WISPTIS.EXE when started but does not close at exit?

$
0
0
As I noticed Toad.exe ist starting WISPTIS.EXE process/program on my Win 7 system. Why? My computer is a non-tablet-computer but a "normal" desktop PC. Moreover it is not closing WISPTIS.EXE again at exit of Toad. Why? Is there an option to disable triggering WISPTIS.EXE from Toad? Peter

Forum Post: Toad for MySQL v7.9.0.609 Beta is now available

$
0
0
A new beta for Toad for MySQL has been posted and is now available for immediate download. Just head over to the download section and get it right now! http://www.toadworld.com/products/toad-for-mysql/toad_for_mysql_beta_program

Forum Post: Database switches in Object Explorer

$
0
0
In the current betas I have noticed that when I change the tab in the Object Explorer (for example I change from the Tables tab to the Procedures tab) the database sometimes switches to a different database. It seems that the database is set for each tab and as you change tabs the database switches to the one last used with a particular tab. I realize this may be somewhat of a personal preference, but I think that the database should never switch automatically, once I select set the database it should stay set until I change it otherwise it bounces around all the time as I change the tabs - surely if I'm looking at Tables in a particular database, I most likely want to look at Procedures in the same database?

Forum Post: How to add a key column?

$
0
0
Hi, I just installed Toad and am excited about using it, Im using mysql, and just trying it out I created a database, table and some column that I link to my visual studio project. it connects fine to the database. However, when adding some random data to the columns in Toad I get a warning/error saying I need to have a key column. Sure, but in Toad under "Alter Table > Columns", I simply dont see where the option of adding a key column is to be found. The complete error-text is: "Dynamic SQL generation for the UpdateCommand is not supported against SelectCommand that does not return any key column information."

Forum Post: RE: How to add a key column?

$
0
0
When you are in the data grid go to the lower left corner. There is a round circle. Click on it. There is a drop down that has option to set key columns. You will get a pop-up. Set the table and columns you want to use to make the row unique. You are basically assiging an index without adding to the table.

Forum Post: Format SQL - Parser Messages: Incorrect syntax near 'GET' in procedure at line "GET CURRENT DIAGNOSTICS CONDITION 1"

$
0
0
Hi, when I copy/past the example procedure regarding Get-Diagnostigs from the MySql Reference Manual into Toad for MySql (Version 7.7.0.579) and use the function "Format SQL" I get the following error message: Parser Messages:12/07/2016 16:08:16: line 11, col 5: Incorrect syntax near 'GET' Does anyone has an idea? DB version is 5.7.13-log. Many thanks in advance... Thorsten Procedure taken from here: https://dev.mysql.com/doc/refman/5.7/en/get-diagnostics.html CREATE PROCEDURE p () BEGIN -- Declare variables to hold diagnostics area information DECLARE errcount INT; DECLARE errno INT; DECLARE msg TEXT; DECLARE EXIT HANDLER FOR SQLEXCEPTION BEGIN -- Here the current DA is nonempty because no prior statements -- executing within the handler have cleared it GET CURRENT DIAGNOSTICS CONDITION 1 errno = MYSQL_ERRNO, msg = MESSAGE_TEXT; SELECT 'current DA before mapped insert' AS op, errno, msg; GET STACKED DIAGNOSTICS CONDITION 1 errno = MYSQL_ERRNO, msg = MESSAGE_TEXT; SELECT 'stacked DA before mapped insert' AS op, errno, msg; -- Map attempted NULL insert to empty string insert INSERT INTO t1 (c1) VALUES(''); -- Here the current DA should be empty (if the INSERT succeeded), -- so check whether there are conditions before attempting to -- obtain condition information GET CURRENT DIAGNOSTICS errcount = NUMBER; IF errcount = 0 THEN SELECT 'mapped insert succeeded, current DA is empty' AS op; ELSE GET CURRENT DIAGNOSTICS CONDITION 1 errno = MYSQL_ERRNO, msg = MESSAGE_TEXT; SELECT 'current DA after mapped insert' AS op, errno, msg; END IF; GET STACKED DIAGNOSTICS CONDITION 1 errno = MYSQL_ERRNO, msg = MESSAGE_TEXT; SELECT 'stacked DA after mapped insert' AS op, errno, msg; END; INSERT INTO t1 (c1) VALUES('string 1'); INSERT INTO t1 (c1) VALUES(NULL); END;

Forum Post: Show Window List Click Through

$
0
0
Toad for MySQL 7.7.0.579 The Windows Tabs (or maybe they are called editor tabs) toolbar has a drop down icon to "Show Window List" that is useful when there are many tabs. However, if one of the window tabs is under the "Show Window List" drop down icon, then left-clicking the icon acts like a right-click on the tab that is under it. This isn't a big issue since I can scroll the tabs or select the tab from the "Window" menu. Thank you.

Forum Post: toad for mysql autoCommit off, but cann't query data that commit by another transaction until i commit my trnasaction.

$
0
0
toad for mysql autoCommit off, but cann't query the line that commit by another transaction befor i commit my trnasaction.

Forum Post: cli UI in toad for mysql

$
0
0
Hi, i've got version 6.0 and 7.7 , how to use cli UI but not edit window? mysql>

Data Compare - Remember Columns

$
0
0
Remember or save / restore "Columns Mapped" when changing "Target Object" in Data Compare Wizard. Compare two tables and edit the Columns Mapped (selected 60 of 69). Select a different Target Object and the Columns Mapped are reset back to 69 of 69. I realize the schema of the targets may be different and therefore the columns may have changed. This is a common task for me. I need to switch targets. It would be nice to have the selected columns remain or be able to save and restore the selected columns. I have a work around. I save the Data Comparison file and then edit it. For example, change FUTURE_B_0512 to FUTURE_B_0727 in the file. Data Compare is a great tool. Developers here that didn't use toad before have started using it for this feature! Thank you.

Forum Post: RE: Collations not showing up in the alter table gui

$
0
0
I have the same problem in version 7.7.0.579.
Viewing all 1315 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>