Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: DBD::mysql won't install

by 7stud (Deacon)
on Jan 15, 2013 at 10:29 UTC ( [id://1013347]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    /Users/7stud/.cpan$ sudo chown -R 7stud .
    
  2. or download this
    $ otool -D `mdfind libmysqlclient.18.dylib`
    
  3. or download this
    $ sudo install_name_tool -id /usr/local/mysql-5.5.28-osx10.6-x86_64/li
    +b/libmysqlclient.18.dylib
    /usr/local/mysql-5.5.28-osx10.6-x86_64/lib/libmysqlclient.18.dylib
    
  4. or download this
    
    mysql> grant all privileges on test.* to '7stud'@'localhost' identifie
    +d by 's3kr1t';
    
  5. or download this
    
    mysql> grant all privileges on test.* to 'root'@'localhost' identified
    + by 's3kr1t';
    
  6. or download this
         $ cd /usr/local/mysql
         $ sudo ./bin/mysqld_safe
    ...
         $ cd /usr/local/mysql
         $ sudo mysqladmin shutdown
    
  7. or download this
    $ mysql -uroot -p
    password: <just hit return>
    ...
    ..
    ...
    mysql>
    
  8. or download this
    mysql> grant all privileges on test.* to '7stud'@'localhost' identifie
    +d by 's3kr1t';
    
  9. or download this
    $ cpan DBD::mysql
    
  10. or download this
    $ perlbrew use perl-5.16.0
    
  11. or download this
    
    $ cpan -f -i DBD::mysql
    
  12. or download this
    $ perl -MCPAN -e shell
    cpan> fforce install DBD::mysql
    
  13. or download this
    use strict; 
    use warnings; 
    ...
    while($query_handle->fetch()) {
       say "$id, $name, $info";
    }
    
  14. or download this
    mysql> CREATE DATABASE my_db CHARACTER SET utf8
    mysql> show databases;
    ...
    #Only use the following if you want to delete data:
    mysql> drop table people;
    mysql> drop database my_db;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1013347]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (2)
As of 2024-04-19 00:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found