Apache-JAF

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

	- added some methods to simplify 'download' handlers
	- POD changes

0.07 Fri Jun 13 14:39 2003
        - PerlTransHandler (highly experimental)
        - the last part of URI can end with .html to hide 
          dynamic nature of your site. But "extension" will be deleted
          during construction of $self->{uri}
	- bugfix in compile-time handlers loading
        - POD changes
        - JAF::DBI::Pg updated
        - JAF::DBI::Oracle added

0.06 Tue May 6 15:50 2003
	- bugfix to Makefile.PL

0.05 Mon Mar 31 13:39:22 2003
        - removed some debug code
        - POD changes

0.04 Fri Mar 28 13:02 2003

lib/JAF/DBI.pm  view on Meta::CPAN

  return undef unless $self->{parent};
  bless $self, $class;
  $self->_init();
  return $self;
}

sub _init {
  my $self = shift;

  $self->{insert_message} = "Record's inserted";
  $self->{update_message} = "Record's updated";
  $self->{delete_message} = "Record's deleted";
}

sub error { shift()->{parent}->error(@_) }
sub message { shift()->{parent}->message(@_) }

sub fixup { { Columns => {} } }

sub _insert_sql {
  my ($self, $options) = @_;



( run in 0.278 second using v1.01-cache-2.11-cpan-05444aca049 )