Thank you thank you thank you so much. That guided me in the correct direction.<br><br>You got me to search for libmysqlclient.18.dylib which led me to <br><br><a href="http://www.blog.bridgeutopiaweb.com/post/how-to-fix-mysql-load-issues-on-mac-os-x/">http://www.blog.bridgeutopiaweb.com/post/how-to-fix-mysql-load-issues-on-mac-os-x/</a><br>
<br>which helped me to understand that I need to get the system to see the file. It was there on my system in<br>/usr/local/mysql-5.5.15-osx10.6-x86_64/lib/libmysqlclient.18.dylib<br>and also in<br>/usr/local/mysql/lib/libmysqlclient.18.dylib<br>
<div class="gmail_quote">which diff said were identical.<br><br>Based on the web article, or better the first comment, I figured that I needed either directory in the path or as the guy recommends, set a symbolic link. I went with the symbolic link option to make it visible in<br>
/usr/lib<br>which the comment at the link above says is &quot;the standard MAC OS X dyld-library-path (/usr/lib/)&quot;<br><br>ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib<br><br>The problem may have been caused by the mysql installation from root and the perl installation being local? I am not sure or not that interested. I am just giving thanks and my solution to the list and Daniel for getting me on the correct path. Seems pretty specific but here it is in case anyone else needs the info.<br>
<br><br><br>On Sun, Apr 1, 2012 at 2:48 PM, Daniel J. Luke <span dir="ltr">&lt;<a href="mailto:dluke@geeklair.net">dluke@geeklair.net</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">On Apr 1, 2012, at 2:30 PM, Robyn Jonahs wrote:<br>
&gt;<br>
&gt; DBIx::Class::Schema::Loader::make_schema_at(): DBI Connection failed: install_driver(mysql) failed: Can&#39;t load &#39;/FOO/perl5/perlbrew/perls/perl-5.14.2/lib/site_perl/5.14.2/darwin-2level/auto/DBD/mysql/mysql.bundle&#39; for module DBD::mysql: dlopen(/FOO/perl5/perlbrew/perls/perl-5.14.2/lib/site_perl/5.14.2/darwin-2level/auto/DBD/mysql/mysql.bundle, 1): Library not loaded: libmysqlclient.18.dylib<br>

&gt;   Referenced from: /FOO/perl5/perlbrew/perls/perl-5.14.2/lib/site_perl/5.14.2/darwin-2level/auto/DBD/mysql/mysql.bundle<br>
&gt;   Reason: image not found at /FOO/perl5/perlbrew/perls/perl-5.14.2/lib/5.14.2/darwin-2level/DynaLoader.pm line 194.<br>
&gt;  at (eval 429) line 3<br>
<br>
</div>This error is saying that darwin&#39;s dyld can&#39;t find the mysql library (libmysqlclient.18.dylib) when trying to load DBD::mysql.<br>
<br>
You can see what libraries the mysql.bundle is linked against by running:<br>
<br>
otool -L /FOO/perl5/perlbrew/perls/perl-5.14.2/lib/site_perl/5.14.2/darwin-2level/auto/DBD/mysql/mysql.bundle<br>
<br>
I don&#39;t know how you have the mysql libraries installed, but knowing where libmysqlclient.18.dylib is located could help you figure out what is going wrong.<br>
<br>
You might be able to fix things just by rebuilding DBD::mysql ...<br>
--<br>
Daniel J. Luke<br>
+========================================================+<br>
| *---------------- <a href="mailto:dluke@geeklair.net">dluke@geeklair.net</a> ----------------* |<br>
| *-------------- <a href="http://www.geeklair.net" target="_blank">http://www.geeklair.net</a> -------------* |<br>
+========================================================+<br>
|   Opinions expressed are mine and do not necessarily   |<br>
|          reflect the opinions of my employer.          |<br>
+========================================================+<br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
List: <a href="mailto:Catalyst@lists.scsys.co.uk">Catalyst@lists.scsys.co.uk</a><br>
Listinfo: <a href="http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst" target="_blank">http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst</a><br>
Searchable archive: <a href="http://www.mail-archive.com/catalyst@lists.scsys.co.uk/" target="_blank">http://www.mail-archive.com/catalyst@lists.scsys.co.uk/</a><br>
Dev site: <a href="http://dev.catalyst.perl.org/" target="_blank">http://dev.catalyst.perl.org/</a><br>
</blockquote></div><br>