DBIx::SQLEngine::Record::PKey - A reference to a specific record in a table


DBIx-SQLEngine documentation Contained in the DBIx-SQLEngine distribution.

Index


Code Index:

NAME

Top

DBIx::SQLEngine::Record::PKey - A reference to a specific record in a table

SYNOPSIS

Top

  my $record_class = $sqldb->record_class( $table_name );

  my $keyobj = $record_class->pkey( $record_id );

  print $key->table();
  print $key->value();

  my $record = $key->record();




DESCRIPTION

Top

This package is INCOMPLETE!

SEE ALSO

Top

For more about the Record classes, see DBIx::SQLEngine::Record::Class.

See DBIx::SQLEngine for the overall interface and developer documentation.

See DBIx::SQLEngine::Docs::ReadMe for general information about this distribution, including installation and license information.


DBIx-SQLEngine documentation Contained in the DBIx-SQLEngine distribution.
package DBIx::SQLEngine::Record::PKey;

use strict;
use Carp;

########################################################################

########################################################################

sub new  {

}

########################################################################

sub table {

}

sub value {

}

########################################################################

sub keep_ref {

}

########################################################################

sub record {

}

########################################################################

########################################################################

########################################################################

1;