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


Class-DBI-Sybase documentation  | view source Contained in the Class-DBI-Sybase distribution.

Index


NAME

Top

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

SYNOPSIS

Top

  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

Top

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

    * Automatic column name discovery.
    * Works with IDENTITY columns to auto-generate primary keys.
    * Works with TEXT columns for create() and update()
    * Allow for CaseSensitive columns (for JavaDeveloperDesignedDBs)
	* Allow for tables with multiple primary key columns

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

BUGS

Top

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

Top

* Dan Sully <daniel@cpan.org> - Original Author

* Michael Wojcikewicz <theothermike@gmail.com> - Current Maintainer

* Paul Sandulescu <archpollux@gmail.com> - Patches

* Thai Nguyen <useevil@gmail.com> - Patches

SEE ALSO

Top

Class::DBI, DBD::Sybase


Class-DBI-Sybase documentation  | view source Contained in the Class-DBI-Sybase distribution.