The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "module:DBIx::RecordSet"

DBIx::Recordset - Perl extension for DBI recordsets River stage one • 4 direct dependents • 4 total dependents

DBIx::Recordset is a perl module for abstraction and simplification of database access. The goal is to make standard database access (select/insert/update/delete) easier to handle and independend of the underlying DBMS. Special attention is made on w...

GRICHTER/DBIx-Recordset-0.26 - 04 Oct 2004 19:30:54 UTC

DBIx::DBO2::RecordSet - A sequential group of Record objects River stage zero No dependents

The base implementation of RecordSet is an array of Record references. Constructor: new ( @records ) : $instance Basics * $rs = DBIx::DBO2::RecordSet->new( @records ); Create a new RecordSet. * $rs->init( @records ); * @records = $rs->records(); Clas...

EVO/DBIx-DBO2-0.008 - 04 Apr 2004 18:10:31 UTC

DBIx::Recordset::DBSeq - Sequence generator in DBI database River stage one • 4 direct dependents • 4 total dependents

DBIx::Recordset::FileSeq generates unique numbers. State is kept in the one table of a database accessable via DBI. With the new constructor you give an open database handle and sepcify the the table where state should be kept. Optionaly you can give...

GRICHTER/DBIx-Recordset-0.26 - 04 Oct 2004 19:30:54 UTC

DBIx::Recordset::FileSeq - Sequence generator in Filesystem River stage one • 4 direct dependents • 4 total dependents

DBIx::Recordset::FileSeq generates unique numbers. State is kept in the filesystem. With the new constructor you sepcify the directory where the state is kept. (First parameter is a dummy values, that will receive the database handle from DBIx::Recor...

GRICHTER/DBIx-Recordset-0.26 - 04 Oct 2004 19:30:54 UTC

DBIx::Recordset::Playground - working sample usages of DBIx::Recordset River stage zero No dependents

TBONE/DBIx-Recordset-Playground-1.9 - 24 Oct 2003 14:35:18 UTC

DBIx::SQLEngine::RecordSet::Set - Array of Record Objects River stage one • 1 direct dependent • 1 total dependent

This package is not yet complete. The base implementation of RecordSet is an array of Record references....

EVO/DBIx-SQLEngine-0.93 - 29 Nov 2004 22:40:37 UTC

DBIx::SQLEngine::RecordSet::PKeySet - A RecordSet which holds primary keys River stage one • 1 direct dependent • 1 total dependent

Provides additional methods for a RecordSet to store primary keys instead of references to records. This package is INCOMPLETE!...

EVO/DBIx-SQLEngine-0.93 - 29 Nov 2004 22:40:37 UTC

DBIx::SQLEngine::RecordSet::NextPrev - A RecordSet with a current index River stage one • 1 direct dependent • 1 total dependent

Provides additional methods for a RecordSet to add a current index with previous and next methods. This package is INCOMPLETE!...

EVO/DBIx-SQLEngine-0.93 - 29 Nov 2004 22:40:37 UTC

DBIx::Compat - Perl extension for Compatibility Infos about DBD Drivers River stage one • 4 direct dependents • 4 total dependents

DBIx::Compat contains a hash which gives information about DBD drivers, to allow to write driver independent programs. Currently there are the following attributes defined: ListFields A function which will return information about all fields of an ta...

GRICHTER/DBIx-Recordset-0.26 - 04 Oct 2004 19:30:54 UTC

DBIx::Database River stage one • 4 direct dependents • 4 total dependents

See perldoc DBIx::Recordset for an description....

GRICHTER/DBIx-Recordset-0.26 - 04 Oct 2004 19:30:54 UTC

DBIx::DBO2 - Objects mapping to SQL relational structures River stage zero No dependents

DBIx::DBO2 is an object-relational mapping framework that facilitates the development of Perl classes whose objects are stored in a SQL database table. The following classes are included: Schema Record RecordSet Fields Each Schema object represents a...

EVO/DBIx-DBO2-0.008 - 04 Apr 2004 18:10:31 UTC

DBIx::DWIW - Robust and simple DBI wrapper to Do What I Want (DWIW) River stage zero No dependents

NOTE: This module is currently specific to MySQL, but needn't be. We just haven't had a need to talk to any other database server. DBIx::DWIW was developed (over the course of roughly 1.5 years) in Yahoo! Finance (http://finance.yahoo.com/) to suit o...

JZAWODNY/DBIx-DWIW-0.50 - 10 Aug 2011 03:49:29 UTC

DBIx::CGITables River stage zero No dependents

This module is under development - and this version is not tested very well. The documentation might not be completely in sync with the latest changes, and the documentation is not optimized for easy understanding at the moment. Sorry. DBIx::CGITable...

TOBIX/DBIx-CGITables-0.001 - 27 Feb 2000 03:53:02 UTC

DBIx::Librarian - Manage SQL in repository outside code River stage zero No dependents

This is for data manipulation (SELECT, INSERT, UPDATE, DELETE), not for data definition (CREATE, DROP, ALTER). Some DDL statements may work inside this module, but correct behavior is not guaranteed. Results of "SELECT1 colname FROM table", expected ...

JMAY/DBIx-Librarian-0.6 - 10 May 2005 00:01:26 UTC

DBIx::SQLEngine - Extends DBI with High-Level Operations River stage one • 1 direct dependent • 1 total dependent

DBIx::SQLEngine is the latest generation of a toolkit used by the authors for several years to develop business data applications. Its goal is to simplify dynamic query execution and to minimize cross-RDMS portability issues. Layered Class Framework ...

EVO/DBIx-SQLEngine-0.93 - 29 Nov 2004 22:40:37 UTC

DBIx::SQLCrosstab - creates a server-side cross tabulation from a database River stage zero No dependents

DBIx::SQLCrosstab produces a SQL query to interrogate a database and generate a cross-tabulation report. The amount of parameters needed to achieve the result is kept to a minimum. You need to indicate which columns and rows to cross and from which t...

GMAX/DBIx-SQLCrosstab-1.17 - 16 Jan 2004 11:59:35 UTC

DBIx::DBO2::Fields - Construct methods for database fields River stage zero No dependents

This package creates methods for DBIx::DBO2::Record objects. It's based on Class::MakeMethods::Template. Accessing Field Attributes Calling "->fields()" on a class or instance returns a hash of field-name => field-attribute-hash pairs. my %fields = E...

EVO/DBIx-DBO2-0.008 - 04 Apr 2004 18:10:31 UTC

DBIx::DBO2::Record - A row in a table in a datasource River stage zero No dependents

The DBIx::DBO2::Record class represents database records in tables accessible via DBIx::SQLEngine. By subclassing this package, you can easily create a class whose instances represent each of the rows in a SQL database table....

EVO/DBIx-DBO2-0.008 - 04 Apr 2004 18:10:31 UTC

DBIx::SearchBuilder - Encapsulate SQL queries and rows in simple perl objects River stage one • 3 direct dependents • 3 total dependents

This module provides an object-oriented mechanism for retrieving and updating data in a DBI-accesible database. In order to use this module, you should create a subclass of "DBIx::SearchBuilder" and a subclass of "DBIx::SearchBuilder::Record" for eac...

BPS/DBIx-SearchBuilder-1.81 - 18 Jan 2024 21:15:25 UTC

DBIx::SearchProfiles - Access to SQL database via template query. River stage zero No dependents

DBIx::SearchProfiles is a module which wraps around a DBI database handle and provides another way than raw SQL to access the database. Its aims is to take the SQL out of the code in well defined and documented search profiles which has easier to mai...

FRAJULAC/Apache-iNcom-0.09 - 19 Jun 2000 21:03:51 UTC
25 results (0.051 seconds)