GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
SQLEngine::RecordSet::PKeySet(3) User Contributed Perl Documentation SQLEngine::RecordSet::PKeySet(3)

DBIx::SQLEngine::RecordSet::PKeySet - A RecordSet which holds primary keys

  use DBIx::SQLEngine::RecordSet;
  
  $rs = DBIx::SQLEngine::RecordSet->class( 'PKeySet' )->new(@records);

Provides additional methods for a RecordSet to store primary keys instead of references to records.

This package is INCOMPLETE!

  • $rs = DBIx::SQLEngine::RecordSet::Set->new_class_ids( $class, @ids );
  • $rs->init_class_ids( $class, @ids );
  • ( $class, @ids ) = $rs->class_ids();

Each of the below returns a RecordSet blessed into a particular subclass. Returns the original object if it is already of that subclass, or returns a cloned and converted copy.
  • @data = $rs->raw();

    Returns the contents of the RecordSet as stored internally within the object. Results are dependent on which subclass is in use.

  • $rs = $rs->as_RecordArray;

    INCOMPLETE

  • $clone = $rs->as_IDArray;

    INCOMPLETE

  • $clone = $rs->as_IDString;

    INCOMPLETE

# $rs = DBIx::SQLEngine::RecordSet::Set->new_class_ids( $class, @ids ); sub new_ids { my $callee = shift; my $package = ref $callee || $callee;

  my $self = [];
  bless $self, $package;
  $self->init_class_ids( @_ );
  return $self;
}

# $rs->init_ids( $class, @ids ); sub init_ids { my $self = shift; my $class = shift;

  @$self = map { $class->fetch_id( $_ ) } @_;
}

# @records = $rs->class_ids(); sub class_ids { my $self = shift; my $class = ref( $self->[0] ); return $class, map { $_->{id} } @$self; }

###

sub raw { my $self = shift; if ( scalar @_ ) { @$self = @_; } else { @$self; } } # # sub as_RecordArray { # my $self = shift; # } # # sub as_IDArray { # my $self = shift; # EBiz::Database::RecordSet::IDArray->new( $self->records ); # } # # sub as_IDString { # my $self = shift; # EBiz::Database::RecordSet::IDString->new( $self->records ); # }

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

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

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.

2004-11-29 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.