Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.062.560 Times

Sunday School Object Lessons software
Filter: All | Freeware | Demo
 

Sunday School Object Lessons

< 1 2 3 4 5 > 
Added: April 14, 2010 | Visits: 888

Basset::Object::Persistent Basset::Object::Persistent is a subclass of Basset::Object that allows objects to be easily stored into a relational database. Presently only supports MySQL, but that may change in the future. SYNOPSIS (no synopsis, this is an abstract super class that should never be instantiated directly,...



Platforms: *nix

License: Freeware Size: 143.36 KB Download (88): Basset::Object::Persistent Download

Added: April 03, 2010 | Visits: 949

Rose::Object::MakeMethods::Generic Rose::Object::MakeMethods::Generic is a Perl module that can create simple object methods. SYNOPSIS package MyObject; use Rose::Object::MakeMethods::Generic ( scalar => [ power, error, ], scalar --get_set_init => name, boolean --get_set_init => is_tall, boolean => [ is_red,...





Platforms: *nix

License: Freeware Size: 28.67 KB Download (91): Rose::Object::MakeMethods::Generic Download

Added: June 04, 2010 | Visits: 1.473

Rose::DB::Object::Tutorial Rose::DB::Object::Tutorial is a guided tour of the basics of Rose::DB::Object. INTRODUCTION This document provides a step-by-step introduction to the Rose::DB::Object module distribution. It demonstrates all of the important features using a semi-realistic example database. This tutorial does...


Platforms: *nix

License: Freeware Size: 481.28 KB Download (98): Rose::DB::Object::Tutorial Download

Added: July 05, 2010 | Visits: 1.352

Rose::DB::Object::Helpers Rose::DB::Object::Helpers is a mix-in class containing convenience methods for Rose::DB::Object. SYNOPSIS package MyDBObject; use Rose::DB::Object; our @ISA = qw(Rose::DB::Object); use Rose::DB::Object::Helpers clone, { load_or_insert => find_or_create }; ... $obj =...


Platforms: *nix

License: Freeware Size: 481.28 KB Download (114): Rose::DB::Object::Helpers Download

Added: October 02, 2010 | Visits: 955

Rose::DB::Object::QueryBuilder Rose::DB::Object::QueryBuilder is a Perl module that can build SQL queries on behalf of Rose::DB::Object::Manager. SYNOPSIS use Rose::DB::Object::QueryBuilder qw(build_select); # Build simple query $sql = build_select ( dbh => $dbh, select => COUNT(*), tables => [ articles ], columns...


Platforms: *nix

License: Freeware Size: 481.28 KB Download (95): Rose::DB::Object::QueryBuilder Download

Added: October 18, 2010 | Visits: 884

Rose::Object Rose::Object is a simple object base class. SYNOPSIS package MyObject; use Rose::Object; our @ISA = qw(Rose::Object); sub foo { ... } sub bar { ... } ... my $o = MyObject->new(foo => abc, bar => 5); ... Rose::Object is a generic object base class. It provides very little...


Platforms: *nix

License: Freeware Size: 28.67 KB Download (87): Rose::Object Download

Added: April 09, 2010 | Visits: 755

Object::Relation::Meta::Attribute::Schema Object::Relation::Meta::Attribute::Schema is a Perl module for Object::Relation database store builder. Synopsis # Assuming MyThingy was generated by Object::Relation::Meta and that were building # a data store schema. my $class = MyThingy->my_class; print "nAttributes:n"; for my $attr...


Platforms: *nix

License: Freeware Size: 235.52 KB Download (94): Object::Relation::Meta::Attribute::Schema Download

Added: July 27, 2010 | Visits: 832

Object::Relation::Meta::Class::Schema Object::Relation::Meta::Class::Schema is a Perl module for Object::Relation database store builder. This module is provides metadata for all Object::Relation classes while building a storage schema. Loading Object::Relation::Schema causes it to be used instead of Object::Relation::Meta::Class....


Platforms: *nix

License: Freeware Size: 24.58 KB Download (87): Object::Relation::Meta::Class::Schema Download

Added: February 24, 2010 | Visits: 869

Object::Relation::DataType Object::Relation::DataType is a Perl module with complex data types for TKP. The Object::Relation::DataType name space is set aside for the creation of complex data types for TKP. By "complex" I mean serializable objects, such as dates, durations, states, etc. It also is designed to create a...


Platforms: *nix

License: Freeware Size: 235.52 KB Download (88): Object::Relation::DataType Download

Added: April 22, 2010 | Visits: 1.217

Ace::Object Ace::Object is a Perl module to manipulate Ace Data Objects. SYNOPSIS # open database connection and get an object use Ace; $db = Ace->connect(-host => beta.crbm.cnrs-mop.fr, -port => 20000100); $sequence = $db->fetch(Sequence => D12345); # Inspect the object $r =...


Platforms: *nix

License: Freeware Size: 296.96 KB Download (96): Ace::Object Download

Added: January 17, 2010 | Visits: 934

Yet Another Object Request Broker Yet Another Object Request Broker is an implementation of the CORBA ORB. YaOrb advanced installation YaOrb uses the GNU tools (Autoconf, Automake, ...). See the GNU documentation for complete instructions, in file $/INSTALL.GNU. Optional features The configure script also supports...


Platforms: *nix

License: Freeware Size: 962.56 KB Download (91): Yet Another Object Request Broker Download

Added: February 02, 2010 | Visits: 869

Object::Realize::Later Object::Realize::Later is a Perl module with delayed creation of objects. SYNOPSIS package MyLazyObject; use Object::Realize::Later becomes => MyRealObject, realize => load; The Object::Realize::Later class helps with implementing transparent on demand realization of object data. This...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (88): Object::Realize::Later Download

Added: June 03, 2010 | Visits: 699

Object::AutoAccessor Object::AutoAccessor is an accessor class by using AUTOLOAD. SYNOPSIS use Object::AutoAccessor; my $struct = { foo => { bar => { baz => BUILD OK, }, }, }; # Now lets easily accomplish it. my $obj = Object::AutoAccessor->build($struct); print $obj->foo->bar->baz; # prints BUILD OK...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (89): Object::AutoAccessor Download

Added: August 27, 2010 | Visits: 760

Query Object Framework QOF, the Query Object Framework, provides a set of C Language utilities for performing generic structured complex queries on a set of data held by a set of C/C++ objects. Query Object Framework is unique in that it does NOT require SQL or any database at all to perform the query. Thus, it...


Platforms: *nix

License: Freeware Size: 696.32 KB Download (87): Query Object Framework Download

Added: April 27, 2010 | Visits: 904

Games::Object Games::Object is a Perl module to provide a base class for game objects. SYNOPSIS package MyGameObject; use Games::Object; use vars qw(@ISA); @ISA = qw(Games::Object); sub new { # Create object my $proto = shift; my $class = ref($proto) || $proto; my $self = $class->SUPER::new(@_);...


Platforms: *nix

License: Freeware Size: 84.99 KB Download (89): Games::Object Download

Added: March 21, 2010 | Visits: 2.486

Php Object Generator Php Object Generator on short POG is an open source PHP code generator which automatically generates clean & tested Object Oriented code for your PHP4/PHP5 application. Over the years, we realized that a large portion of a PHP programmers time is wasted on repetitive coding of the Database...


Platforms: *nix

License: Freeware Size: 1024 KB Download (282): Php Object Generator Download

Added: March 04, 2010 | Visits: 1.247

Portable Object Compiler Portable Object Compiler project consists of a set of Objective-C class libraries and a precompiler (translator) that generates plain C code..


Platforms: *nix

License: Freeware Size: 839.68 KB Download (102): Portable Object Compiler Download

Added: March 20, 2010 | Visits: 792

Software::Packager::Object Software::Packager::Object is a generic object data storage. SYNOPSIS use Software::Packager::Object; This module is used by Software::Packager for holding data for a each item added to the a software package. It provides an easy way of accessing the data for each object to be installed....


Platforms: *nix

License: Freeware Size: 21.5 KB Download (96): Software::Packager::Object Download

Added: September 22, 2010 | Visits: 1.102

Software::Packager::Object::Aix Software::Packager::Object::Aix module it extends Software::Packager::Object and adds extra methods for use by the AIX software packager. FUNCTIONS LPP TYPE The LPP type for objects determines the type of LPP package created. If the objects destination is under /usr/share then the object is...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (111): Software::Packager::Object::Aix Download

Added: October 27, 2010 | Visits: 925

Perlbug::Object Perlbug::Object is a object handler for Perlbug database. Handles Perlbug database objects, typically bug, group, message, patch, note, test, user, and severity, status etc.... Methods included to recognise objects by their id or by their also unique name. SYNOPSIS my $o_obj =...


Platforms: *nix

License: Freeware Size: 501.76 KB Download (274): Perlbug::Object Download

< 1 2 3 4 5 >