Dan Sully > Class-DBI-Sybase-0.31 > Class::DBI::Sybase

Download:
Class-DBI-Sybase-0.31.tar.gz

Dependencies

Annotate this POD

CPAN RT

New  4
Open  0
View Bugs
Report a bug
Module Version: 0.31   Source   Latest Release: Class-DBI-Sybase-0.5

NAME ^

Class::DBI::Sybase - Extensions to Class::DBI for Sybase

SYNOPSIS ^

  package Music::DBI;
  use base 'Class::DBI::Sybase';
  Music::DBI->set_db('Main', 'dbi:Sybase:server=$server', 'username', 'password');

  package Artist;
  use base 'Music::DBI';
  __PACKAGE__->set_up_table('Artist');
  
  # ... see the Class::DBI documentation for details on Class::DBI usage

DESCRIPTION ^

This is an extension to Class::DBI that currently implements:

        * Automatic column name discovery.
        * Works with IDENTITY columns to auto-generate primary keys.

Instead of setting Class::DBI as your base class, use this.

BUGS ^

DBD::Sybase currently has a bug where a statement handle can be marked as active, even though it's not. We override sth_to_objects to call finish() on the handle.

AUTHORS ^

Dan Sully <daniel@cpan.org>

Michael Wojcikewicz <mike@perlpimps.com>

SEE ALSO ^

Class::DBI, DBD::Sybase