[CDBI] Working with tables without primary keys?

[prev] [thread] [next] [Date index for 2005/11/07]

From: Eamon Daly
Subject: [CDBI] Working with tables without primary keys?
Date: 23:24 on 07 Nov 2005
Hi, all. I couldn't find anything in the Class::DBI CPAN
pages or on the Wiki, so perhaps one of you can provide a
pointer. What's the Right Way to work with tables lacking
primary keys?

Given a table like this:

+--------+----------+
| foo_id | foo_name |
+--------+----------+
|      0 | bar-1    |
|      8 | bar-2    |
|      3 | bar-3    |
|      8 | bar-4    |
|      7 | bar-5    |
|      4 | bar-6    |
|      7 | bar-7    |
|      4 | bar-8    |
|      0 | bar-9    |
+--------+----------+

My CDBI package looks like:

package Foo::Test;

use strict;
use base 'Foo::DBI';

__PACKAGE__->columns(All => qw/foo_id foo_name/);

1;

and the test script:

use MFD::Test;

my @objs = MFD::Test->retrieve_all;

for (sort { $a->foo_name cmp $b->foo_name } @objs) {
    print join("\t", $_->foo_id, $_->foo_name) . "\n";
}

produces output like:

0       bar-1
0       bar-1
8       bar-2
8       bar-2
3       bar-3
7       bar-5
7       bar-5
4       bar-6
4       bar-6

Note that CDBI returns several entries with the wrong
foo_name, because the foo_id is reused.

____________________________________________________________
Eamon Daly


_______________________________________________
ClassDBI mailing list
ClassDBI@xxxxx.xxxxxxxxxxxxxxxx.xxx
http://lists.digitalcraftsmen.net/mailman/listinfo/classdbi

[CDBI] Working with tables without primary keys?
Eamon Daly 23:24 on 07 Nov 2005

Re: [CDBI] Working with tables without primary keys?
Perrin Harkins 23:51 on 07 Nov 2005

Re: [CDBI] Working with tables without primary keys?
Perrin Harkins 17:08 on 08 Nov 2005

Re: [CDBI] Working with tables without primary keys?
Perrin Harkins 23:49 on 07 Nov 2005

Re: [CDBI] Working with tables without primary keys?
Left to My Own Devices 02:49 on 08 Nov 2005

RE: [CDBI] Working with tables without primary keys?
Mark Schoonover 03:55 on 08 Nov 2005

RE: [CDBI] Working with tables without primary keys?
Left to My Own Devices 03:12 on 08 Nov 2005

RE: [CDBI] Working with tables without primary keys?
Mark Schoonover 13:16 on 08 Nov 2005

Generated at 20:55 on 09 Nov 2005 by mariachi v0.52