Hi,
I hope this suggestion is something visible and make sense.
I would like to suggest to add functionality to execute prepare query by passing an array argument.
This would be additional method to the existing "execute" - where it is usingĀ variable-length argument list.
Unless if there is other way that I'm not aware of, the suggestion would be helping a lotĀ in generating a dynamic prepared query.
To describe more, in "BasePreparedQuery" class:
Code:
public function execute(...$data)
{
...
}
The suggestion is to have something like this:
Code:
public function executeArray($data)
{
...
}
Thank you & BR,