Wiki

Changes between Version 4 and Version 5 of SetUpMySqlOnUnixLike

Show
Ignore:
Timestamp:
06/20/09 10:44:01 (15 years ago)
Author:
Chuck
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SetUpMySqlOnUnixLike

    v4 v5  
    1616== Set-up MySQL Client Access == 
    1717 
     18Note 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 
    1820From the command line: 
    1921{{{ 
     
    2426cat README 
    2527mv mysql.data.dll MySql.Data.dll 
    26 gacutil -i MySql.Data.dll 
    27 # or: 
    2828sudo gacutil -i MySql.Data.dll 
    2929    Installed MySql.Data.dll into the gac (/Library/Frameworks/Mono.framework/Versions/2.4/lib/mono/gac) 
     
    6464}}} 
    6565 
    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. 
     66At 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{{{ 
     68cd ~/mysqlcon 
     69sudo cp MySql.Data.dll /Library/Frameworks/Mono.framework/Libraries/ 
     70}}} 
     71 
     72Or you can bury this ugly detail in a build script. 
    6773 
    6874== Going Further ==