Ports Search

Results 17,10117,110 of 19,819 for %22HTTP Server%22.(0.012 seconds)
databases/Class-DBI-SAK-1.4 (Score: 7.739885E-4)
Class::DBI Swiss Army Knife (SAK)
By taking the busy work out of using Class::DBI as you see fit, your code becomes more useful by size. Most of us end up using at least a couple Class::DBI extensions in our programs, and it's just a pain. Enter the Swiss Army Knife.
databases/Class-DBI-SQLite-0.11 (Score: 7.739885E-4)
Extension to Class::DBI for sqlite
Class::DBI::SQLite is an extension to Class::DBI for DBD::SQLite, which allows you to populate auto incremented row id after insert.
databases/Class-DBI-Sweet-0.11 (Score: 7.739885E-4)
Extra sweet features for Class::DBI
Class::DBI::Sweet provides convenient count, search, page, and cache functions in a sweet package. It integrates these functions with "Class::DBI" in a convenient and efficient way.
databases/Class-DBI-ToSax-0.10 (Score: 7.739885E-4)
Extension to Class::DBI for sqlite
databases/Class-DBI-Untaint-1.00 (Score: 7.739885E-4)
Class::DBI constraints using CGI::Untaint
Using this module will plug-in a new constraint type to Class::DBI that uses CGI::Untaint. Any column can then be said to require untainting of a given type - i.e. that any value which you attempted to set that column to (include at create() time) must pass an untaint as_type() check.
databases/Class-DBI-mysql-1.00 (Score: 7.739885E-4)
Extensions to Class::DBI for MySQL
This is an extension to Class::DBI, containing several functions and optimisations for the MySQL database. Instead of setting Class::DBI as your base class, use this instead.
databases/DBIx-Admin-CreateTable-2.10 (Score: 7.739885E-4)
Create and drop tables, primary indexes, and sequences
DBIx::Admin::CreateTable is a pure Perl module. Database vendors supported: MySQL, Oracle, Postgres, SQLite. Assumptions: - Every table has a primary key - The primary key is a unique, non-null, integer - The primary key is a single column - The primary key column is called 'id' - If a primary key has a corresponding auto-created index, the index is called 't_pkey': This is true for Postgres, where declaring a column as a primary key automatically results in the creation of an associated index for that column. The index is named after the table, not after the column. - If a table 't' (with primary key 'id') has an associated sequence, the sequence is called 't_id_seq': This is true for both Oracle and Postgres, which use sequences to populate primary key columns. The sequences are named after both the table and the column.
databases/DBIx-Admin-TableInfo-3.01 (Score: 7.739885E-4)
Wrapper for all of table_info(), column_info(), *_key_info()
DBIx::Admin::TableInfo is a pure Perl module. It is a convenient wrapper around all of these DBI methods: - table_info() - column_info() - primary_key_info() - foreign_key_info()
databases/DBIx-Class-AsFdat-0.03 (Score: 7.739885E-4)
Perl extension like CDBI::Plugin::AsFdat
DBIx::Class::AsFdat - like CDBI::Plugin::AsFdat.
databases/DBIx-Class-BitField-0.13 (Score: 7.739885E-4)
Store multiple boolean fields in one integer field
This module is useful if you manage data which has a lot of on/off attributes like active, inactive, deleted, important, etc. If you do not want to add an extra column for each of those attributes you can easily specify them in one integer column. A bit field is a way to store multiple bit values on one integer field. The main benefit from this module is that you can add additional attributes to your result class whithout the need to deploy or change the schema on the data base.