NAME
POE::Component::LaDBI::Response - Class encapsulating responses from POE::Component::LaDBI::Engine.
SYNOPSIS
  use POE::Component::LaDBI::Response;
  $resp = POE::Component::LaDBI::Response->new
           (Code     => 'OK',
	    HandleId => $sth_id,
	    Id       => $request_id,
	    DataType => 'TABLE',
	    Data     => $fetchall_arrayref_ret);
  $resp->code;
  $resp->handle_id;
  $resp->id;
  $resp->datatype;
  $resp->data;
  $resp->id;
DESCRIPTION
$resp->new()- 
Args:
For the keys, capitalization does not matter. Internally the keys are lowercased.
Code- 
String identifier representing the error result of the request.
Valid
Codevalues are:OK- 
The
POE::Component::LaDBI::Requestsucceeded as far asPOE::Component::LaDBI::Engineis concerned. FAILED- 
The
POE::Component::LaDBI::Requestfailed.DataTypewill be set to eitherERRORorEXCEPTION. INVALID_HANDLE_ID- 
The
POE::Component::LaDBI::Engineinstance does not have a record of the$request-handle_id>. 
 Id- 
This is the unique cookie from the
POE::Component::LaDBI::Request($req-id>) thisPOE::Component::LaDBI::Responseobject corresponds to. There is a one for one relationship between requests and responses. DataType- 
The type of data returned in
Data. If you are constucting aPOE::Component::LaDBI::Responseobject you must supply this field. However, if you are just useing thePOE::Component::LaDBI::Responseobject returned fromPOE::Component::LaDBI::Engine::request()you can usually ignore this field. This is because all requests have a fixed and known response data type.TABLE- 
Data is an array ref of array refs to scalars.
Data = [ [row0col0, row0col1, ...], [row1col0, row1col1, ...], ... ] NAMED_TABLE- 
This one is odd. See the description of
selectall_hashref()in DBI. For *_hashref() calls inDBIyou have to provide the database table field which will be the hash key into this hash table. The values corresponding to each key is a hash of the rows returned from the select or fetch. I did not invent this and do not quite understand why.Data = { row0colX_val => {col0_name => row0_val, col1_name => row0_val, ...}, row1colX_val => {col0_name => row1_val, col1_name => row1_val, ...}, ... } ROW- 
Data is an array ref of scalars.
Data = [ elt0, elt1, ... ] NAMED_ROW- 
Data is an hash ref containing name-value pairs of each data item in the row; the name is the column name, the value is the column value.
Data = { col0_name => elt0, col1_name => elt1, ... } COLUMN- 
Data = [ elt0, elt1, ... ] RC- 
Return code is a scalar valude returned from the DBI call.
Data = $rc RV- 
Return Value is a scalar value returned from the DBI call.
Data = $rv SQL- 
This is the data type for the return value from DBI::quote() call.
Data = $sql_string ERROR- 
There was an error for the DBI call. This indicates the DBI call returned undef. The data value is a hash ref with two keys 'err' and 'errstr'. These keys corresponed to the DBI calls of the same name:
$h->errand$h->errstr.Data = { err => $handle->err, errstr => $handle->errstr } EXCEPTION- 
There was an exception thrown from the DBI call. This indicates the DBI call called a die(). All DBI calles executed by
POE::Component::LaDBI::Engineare wrapped in aeval {}to catch any exceptions, like whenRaiseErroris set.Data = $@ 
 Data- 
The value of this field is described above. It can be a scalar, hashref, arrayref, or undef.
 
 
Accessor Functions
$resp->code()$resp->id()$resp->datatype()$resp->data()- 
Get/Set accessor funtions to the same data described in the
new()constructor. 
EXPORT
None by default.
AUTHOR
Sean Egan, <seanegan:bigfoot_com>
SEE ALSO
perl.
2 POD Errors
The following errors were encountered while parsing the POD:
- Around line 306:
 You forgot a '=back' before '=head3'
- Around line 308:
 '=item' outside of any '=over'