Add fake PMA_DBI_store_result to other DBIs (bug #3577217)

This commit is contained in:
Michal Čihař 2012-10-18 10:13:03 +02:00
parent 15dd484dd2
commit dbf33cb24b
2 changed files with 19 additions and 0 deletions

View File

@ -654,4 +654,14 @@ function PMA_DBI_field_flags($result, $i)
return trim($flags);
}
/**
* Store the result returned from multi query
*
* @return false
*/
function PMA_DBI_store_result()
{
return false;
}
?>

View File

@ -540,4 +540,13 @@ function PMA_DBI_field_flags($result, $i)
return mysql_field_flags($result, $i);
}
/**
* Store the result returned from multi query
*
* @return false
*/
function PMA_DBI_store_result()
{
return false;
}
?>