Changes between Version 4 and Version 5 of SetUpMySqlOnUnixLike
- Timestamp:
- 06/20/09 10:44:01 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SetUpMySqlOnUnixLike
v4 v5 16 16 == Set-up MySQL Client Access == 17 17 18 Note that the "sudo" prefix in some commands below is not necessary if you are running as root or have the permissions to the installation directories. 19 18 20 From the command line: 19 21 {{{ … … 24 26 cat README 25 27 mv mysql.data.dll MySql.Data.dll 26 gacutil -i MySql.Data.dll27 # or:28 28 sudo gacutil -i MySql.Data.dll 29 29 Installed MySql.Data.dll into the gac (/Library/Frameworks/Mono.framework/Versions/2.4/lib/mono/gac) … … 64 64 }}} 65 65 66 At this point, I don't know why the absolute path is required given that the DLL was installed to the GAC. But you can bury this ugly detail in a build script. 66 At this point, I don't know why the absolute path is required given that the DLL was installed to the GAC. But I do know that the fix on Mac OS X is: 67 {{{ 68 cd ~/mysqlcon 69 sudo cp MySql.Data.dll /Library/Frameworks/Mono.framework/Libraries/ 70 }}} 71 72 Or you can bury this ugly detail in a build script. 67 73 68 74 == Going Further ==