Mysql connector

From NSIS Wiki
Jump to navigationJump to search

How to check and install MySQL .NET Connector

The following is a peice of script to check and install MySQL Connector 5.0.3 for .NET

   ; check MYSQL Connector 5.0.3
   IfFileExists "${PROGRAMFILES}\MySQL\MySQL Connector Net 5.0.3\*.*" mysqlfound
       Return
   
   mysqlfound:
       File MySql.Data.msi
       ExecWait "$TEMP\MySql.Data.msi /quiet"

--Ugosweb 01:47, 11 June 2007 (PDT)