Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Class::DBI and DB design

by edoc (Chaplain)
on Jun 06, 2003 at 17:17 UTC ( [id://263778]=note: print w/replies, xml ) Need Help??


in reply to Class::DBI and DB design

apologies if I'm way off base here,

Update: Yup, way off base.. nothing to see here people.. move along..

If I read the Class::DBI docs right, I need to add a "relation_id" column to the user_capabilities table, even if I'm never going to need it. Why? What was the reasoning behind that restriction?

I don't think you do have to. You just want to make 'uid' the primary key for the table. Are you after something like this maybe?

package My::Class::DBI::User; use base 'Class::DBI'; __PACKAGE__->table('user'); __PACKAGE__->columns( All => qw/ uid name login / ); __PACKAGE__->has_many('logins', My::Class::DBI::UserLogin => 'uid'); package My::Class::DBI::UserLogin; use base 'Class::DBI'; __PACKAGE__->table('user_login'); __PACKAGE__->columns( All => qw/ uid timestamp / ); 1;

cheers,

J

Replies are listed 'Best First'.
Re: Re: Class::DBI and DB design
by v_thunder (Scribe) on Jun 06, 2003 at 17:32 UTC

    I was under the impression that a primary key was equivalent to "unique not null", and indexed. In the user_login case the uid would not be unique, since there would be multiple rows with the same uid, one for each login from the same user.

    Am I wrong here? Can I really use uid as the primary key in that example?

      ahhh.. doh.. thought I must've be missin something.. maybe I didn't need that extra beer..

      cheers,

      J

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://263778]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (6)
As of 2024-04-19 07:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found