Added:
trunk/CHANGES
Modified:
trunk/Installer/main.wxs
Log:
Bug #23071 Add Connection Dialog of server explorer closes instantly when text is typed.
This bug was caused not by a problem in the plugin but by the connector not being properly
installed. This is fixed by having the plugin installer check and make sure that the
connector 5.0.2 or later is installed.
Added: trunk/CHANGES
===================================================================
--- trunk/CHANGES 2006-11-16 16:06:00 UTC (rev 14)
+++ trunk/CHANGES 2006-11-27 19:39:41 UTC (rev 15)
@@ -0,0 +1,9 @@
+Version 1.0.2
+
+ Other changes
+ -------------
+
+ Bugs fixed
+ ----------
+ Bug #24271 #42S02Table 'mysql.PROC' doesn't exist
+ Bug #23071 Add Connection Dialog of server explorer closes instantly when text is
typed.
\ No newline at end of file
Modified: trunk/Installer/main.wxs
===================================================================
--- trunk/Installer/main.wxs 2006-11-16 16:06:00 UTC (rev 14)
+++ trunk/Installer/main.wxs 2006-11-27 19:39:41 UTC (rev 15)
@@ -174,6 +174,13 @@
</Directory>
</Directory>
+ <!-- search for registry key from connector installation -->
+ <!-- if the connector is not installed, then give a message and fail -->
+ <Property Id="CONNECTORPATH">
+ <RegistrySearch Id="FindConnector" Root="HKLM"
+ Key="Software\MySQL AB\MySQL Connector/Net 5.0.2\Version"
Type="raw" />
+ </Property>
+ <Condition Message='Connector/Net 5.0.2 or later must be installed
first.'>CONNECTORPATH = "5.0.2"</Condition>
<Feature Id='Complete' ConfigurableDirectory='INSTALLDIR' Level='1'>
<ComponentRef Id='RegistryValues' />
Thread |
---|
• Visual Studio Plugin commit: r15 - in trunk: . Installer | rburnett | 27 Nov |