NAME

SPOPS::DBI::MySQL -- MySQL-specific code for DBI collections

SYNOPSIS

package MySPOPS;

@MySPOPS::ISA = qw( SPOPS::DBI::MySQL SPOPS::DBI );

DESCRIPTION

This just implements some MySQL-specific routines so we can abstract them out.

One of these items is to return the just-inserted ID. Only works for tables that have at least one auto-increment field:

CREATE TABLE my_table (
  id  int not null auto_increment,
  ...
)

BUGS

TO DO

SEE ALSO

DBD::mysql, DBI

COPYRIGHT

Copyright (c) 2000 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.

AUTHORS

Chris Winters <chris@cwinters.com>