Recently installed MySQL, works fine from the command line.
Had problems with installation of Msql-Mysql-modules-1.2215:
- Could not find loadable object (I fixed this by copying DBI.so into the path).
- Can't locate auto/DBI/prepare.al (and any other method that is called, except for connect). This one is giving me problems.
Here I am speculating:
I looked in the Makefile generated by make Makefile.PL. It
looks like the autosplit routine is responsible for breaking
up the mysql.pm into '.al' pieces? These pieces are missing
(find / -name *.al returns only POSIX .al things). No warning
is given by make that things are missing.
I tried breaking up mysql.pm manually (as one would make .pm
files). The test program connects to the database but "hangs"
indefinitely on the prepare statement.
When perl things work, they work very well, so please help
me determine what I did wrong!
A small question: Why break things into .als? For speed on
loading? Could the programs be written to look for the .pm
if the .al cannot be found?
Thanks!
Gary