in reply to Re: Can't locate DBD/Mysql.pm in @INC
in thread Can't locate DBD/Mysql.pm in @INC
This error message is also dependent on the operating system. If you're on an OS where filenames are case sensitive, the message will be that the module cannot be found in @INC. If the OS does not treat filenames with case sensitivity, the error message will report that the "object method 'driver'" cannot be found. The reason for the nuance should be fairly obvious, but I found it amusing anyway.
On Linux, for example, the failure occurs when DBD::Mysql cannot be found. On Windows the DBD::mysql is found as DBD::Mysql, but the object method 'driver' cannot be found in reference to Mysql, because what goes on within the code is case sensitive.
Dave
|
|---|