Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ropkg(3pm) [debian man page]

RoPkg(3pm)						User Contributed Perl Documentation						RoPkg(3pm)

NAME
RoPkg - collection of perl classes. SYNOPSIS
N.A. - RoPkg is just a central place for information related to RoPkg modules DESCRIPTION
RoPkg contains a collection of base classes useful mostly to Simba. This module contains base exceptions used in all RoPkg related modules (RoPkg::Exceptions) and general utility methods (RoPkg::Utils). Also, RoPkg::Object (the base class for almost all Simba packages) is part of this collection. This collection (with all the modules) wants to provide methods and objects to usual issues. SEE ALSO
RoPkg::Exceptions RoPkg::Object RoPkg::Utils AUTHOR
Subredu Manuel <diablo@iasi.roedu.net> VERSION
The current version for this collection of modules is 0.5.5 DEPENDENCIES
Each module has his own dependencies. Please refer to the man page of each module for additional information. DIAGNOSTICS
Each module has his own tests. To run those tests, unpack the source, and run make tests SUBROUTINES
/METHODS Please refer to the man page of each module to find out more about the methods and subroutines made available. INCOMPATIBILITIES
None known to me BUGS AND LIMITATIONS
Each module may have bugs. Please refer to the man page of each module for detail information CONFIGURATION AND ENVIRONMENT
None of the modules included don't use configuration files or special environment variables. LICENSE AND COPYRIGHT
Copyright (C) 2005 Subredu Manuel. All Rights Reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The LICENSE file contains the full text of the license. perl v5.8.8 2006-06-09 RoPkg(3pm)

Check Out this Related Man Page

RoPkg::Simba::Commands(3pm)				User Contributed Perl Documentation			       RoPkg::Simba::Commands(3pm)

NAME
RoPkg::Simba::Commands VERSION
0.2.2 DESCRIPTION
RoPkg::Simba::Commands is a class used to count and get the commands from the database. SYNOPSIS
!#/usr/bin/perl use RoPkg::DB; use RoPkg::Simba::Commands; sub main { my $dbp = new RoPkg::DB(); $dbp->Add('dbi:mysql:database=mysql;host=localhost', 'root', '', 'local'); my $m = new RoPkg::Simba::Commands(dbo => $dbp, dbo_method => 'db_local'); print $m->Count,' commands found in database',$/; } main(); SUBROUTINES
/METHODS new() The class constructor. At this moment, it just calls RoPkg::DBObject->new() . Please read the RoPkg::DBObject manual page for more information about the new() parameters. Count($fields) Returns the number of commands from database. The $fields parameter contains a list of WHERE clauses. For more details of $fields see SQL::Abstract. Get($fields, $orderby) Returns a array of RoPkg::Simba::Command objects. The commands are read from the database. The $fields parameter contains a list of WHERE clauses. For more details of $fields see SQL::Abstract. $orderby is a reference to a array holding the fields specification used for sorting the data. DIAGNOSTICS
Unpack the source and use 'make test' command CONFIGURATION AND ENVIRONMENT
This module does not use any configuration files or environment variables. DEPENDENCIES
RoPkg::DBCollection and RoPkg::Exceptions INCOMPATIBILITIES
None known to the author BUGS AND LIMITATIONS
None know to the author PERL CRITIC
The code is perl critic level 2 compliant SEE ALSO
RoPkg::Simba RoPkg::Simba::Command SQL::Abstract AUTHOR
Subredu Manuel <diablo@iasi.roedu.net> LICENSE AND COPYRIGHT
Copyright (C) 2005 Subredu Manuel. All Rights Reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The LICENSE file contains the full text of the license. perl v5.14.2 2006-07-04 RoPkg::Simba::Commands(3pm)
Man Page