DBD-EmpressNet
view release on metacpan or search on metacpan
/* se_Fetch may return SE_OK, SE_FAIL, SE_NOREC, or SE_LOCKEDREC */
/* all but SE_OK should set a message and return a NULL AV */
if (retval != SE_OK)
{
switch (retval)
{
case SE_NOREC:
dbd_st_finish (sth, imp_sth);
break;
case SE_LOCKEDREC:
set_error (sth, "Fetch: record locked");
break;
default:
set_error(sth, "Fetch: error");
break;
}
return Nullav;
}
DBIc_NUM_FIELDS(imp_sth) = num_fields;
( run in 0.624 second using v1.01-cache-2.11-cpan-49f99fa48dc )