We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, line below:
https://github.com/crate/crate-pdo/blob/0.6.2/src/Crate/PDO/PDOStatement.php#L200
needs to be changed to:
$zero_based = array_key_exists(0, $input_parameters_array);
or when sending a query with first value being NULL an exception will be thrown.
NULL
Regards, Chris
The text was updated successfully, but these errors were encountered:
hi @l7s thanks for reporting. you're right, the isset() check is not NULL safe. do you want to provide a fix? otherwise we'll take care of if.
Sorry, something went wrong.
Hi, if could you please take care of it that would be great. Regards, Chris
hey @l7s this issue was fixed with #65 and it is released in version 0.6.3
Great, closing this issue.
No branches or pull requests
Hi, line below:
https://github.com/crate/crate-pdo/blob/0.6.2/src/Crate/PDO/PDOStatement.php#L200
needs to be changed to:
$zero_based = array_key_exists(0, $input_parameters_array);
or when sending a query with first value being
NULL
an exception will be thrown.Regards,
Chris
The text was updated successfully, but these errors were encountered: