package Padre::DB::SessionFile; # This class will be automatically loaded by Padre::DB, # Overloading the code already auto-generated by Padre::DB. use 5.008; use strict; use warnings; our $VERSION = '0.50'; 1; __END__ =pod =head1 NAME Padre::DB::SessionFile - Database table to store session files =head1 SYNOPSIS my @files = Padre::DB::SessionFile->select( 'where session = ?', $session_id, ); =head1 DESCRIPTION This class allows storing in L's database the files referenced by a given session (see C). =head1 PUBLIC METHODS =head2 Accessors The following accessors are automatically created by L: =over 4 =item id() =item file() =item position() =item focus() =item session() =back =head2 Class methods The following subs are automatically created by L. Refer to L for more information on them: =over 4 =item select() =item count() =item new() =item create() =item insert() =item delete() =item truncate() =back =head1 COPYRIGHT & LICENSE Copyright 2008-2009 The Padre development team as listed in Padre.pm. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. =cut # Copyright 2008-2009 The Padre development team as listed in Padre.pm. # LICENSE # This program is free software; you can redistribute it and/or # modify it under the same terms as Perl 5 itself.