I'm cleaning up one of my modules. Its use requires that you make a separate package out of it so as to attach a name to it that is the same name as a table in Oracle or MySQL.
# to use it you need to create a package named Tables package Tables; use strict qw(var subs); use vars qw(@ISA $table %dates %enums $primarykey); # after this you put the tables here like so package <TABLE NAME IN ALL CAPS>; @ISA = qw(BaseData); $table = "<TABLE NAME IN ALL CAPS>"; $primarykey = "<PRIMARY KEY>"; %dates = (); # list fields with dates here %enums = (); # list fields of type enum here
As you can see. There isn't much to the derived package. All the methods are inherited. However the variables $table $primarykey %dates and %enums are all defined and initialized here and need to be available to BaseData. Here's how its done now.
# I'll use the insert sub as an example sub insert { my $class = shift; my ($table,$seq_query,$primary_key); # grab the variable defined from the derived class # this is hacky $table = ${$class . "::table"}; $primary = ${$class . "::primarykey"};
Any better way of doing the above formentioned so as to let strict do its job in totality or have it not be so hackish?

Thank you,
BMaximus

In reply to Perl OOP variables by BMaximus

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.