POE::Component::LaDBI::Commands - Package that contains some constants other


POE-Component-LaDBI documentation Contained in the POE-Component-LaDBI distribution.

Index


Code Index:

NAME

Top

POE::Component::LaDBI::Commands - Package that contains some constants other LaDBI packages might use.

SYNOPSIS

Top

  use POE::Component::LaDBI::Commands;

DESCRIPTION

Top

Automatically imports the @COMMANDS array.

EXPORT

This package exports the @COMMANDS array. This array is the list of supported commands POE::Component::LaDBI::Request can build and POE::Component::LaDBI::Engine can execute.

AUTHOR

Top

Sean Egan, seanegan@bigfoot.com

SEE ALSO

Top

perl, POE::Component::LaDBI::Request, POE::Component::LaDBI::Response, POE::Component::LaDBI::Engine.


POE-Component-LaDBI documentation Contained in the POE-Component-LaDBI distribution.

package POE::Component::LaDBI::Commands;

use v5.6.0;
use strict;
use warnings;

our $VERSION = '1.0';

require Exporter;
our @ISA = qw(Exporter);
our @EXPORT = qw(@COMMANDS);

our @COMMANDS =
  qw(
     CONNECT
     DISCONNECT
     PREPARE
     FINISH
     EXECUTE
     ROWS
     FETCHROW
     FETCHROW_HASH
     FETCHALL
     FETCHALL_HASH
     PING
     DO
     BEGIN_WORK
     COMMIT
     ROLLBACK
     SELECTALL
     SELECTALL_HASH
     SELECTCOL
     SELECTROW
     QUOTE
    );

1;
__END__