Re: trying to subclass DBI





wernerus sebastien wrote:
 Tim, I made the changes you suggested. Here is the code:

-------------------------------
package MySubDBI;

....


package Main;

try:

package main; #IE lowercase "M", not Main..

Also be sure to:
use strict;
use warnings;
in each package as that will likley tell you what is wrong (assuming it a programming error and not a subclassing paradigm error which useing strict and warnings will assist in catching/ruling that out)
.




Relevant Pages