|
NAMESPOPS::Iterator::DBI - Implementation of SPOPS::Iterator for SPOPS::DBISYNOPSISmy $iter = My::SPOPS->fetch_iterator({ skip_security => 1, where => 'package = ?', value => [ 'base_theme' ], order => 'name' }); while ( $iter->has_next ) { my $template = $iter->get_next; print "Item ", $iter->position, ": $template->{package} / $template->{name}"; print " (", $iter->is_first, ") (", $iter->is_last, ")\n"; } DESCRIPTIONThis is an implementation of the "SPOPS::Iterator" interface -- for usage guidelines please see the documentation for that module. The methods documented here are for SPOPS developers (versus SPOPS users).METHODSinitialize()fetch_object() finish() SEE ALSOSPOPS::IteratorSPOPS::DBI COPYRIGHTCopyright (c) 2001-2004 intes.net, inc.. All rights reserved.This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. AUTHORSChris Winters <chris@cwinters.com>
Visit the GSP FreeBSD Man Page Interface. |