-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
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
v2.10.2 - SQLSTATE[HY000]: General error: Extraneous additional parameters #3975
Comments
Here is the list of changes between the 2 versions: v2.10.1...2.10.2 Do you think it might have to do with 24cefe5 ? Is there a stack trace you could share? |
Here is the trace:
And yes, that could certainly be related. It looks like Propel dealt with an issue related to this years ago- found some issues on github. |
Possible next steps:
|
I am running into the same issue and can confirm that this PR is the cause: 24cefe5 edit: |
@duncan3dc please have a look at this |
Can also confirm and set a conflict for 2.10.2 in composer.json which fixed our pipeline so far |
This comment has been minimized.
This comment has been minimized.
Problem still existis in 2.10.3 released today. So far this helps "conflict": {
"doctrine/dbal": "2.10.2|2.10.3"
}, |
The problem still exists in 2.10.4. "conflict": {
"doctrine/dbal": "2.10.2|2.10.3|2.10.4"
}, |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Bug Report
When using the Doctrine PDO connection object to bind params to a prepared statement, the following error is being caused.
SQLSTATE[HY000]: General error: Extraneous additional parameters
This issue did not exist with 2.10.1. I also believe it's related to
$stmt->fetchAll(\PDO::FETCH_ASSOC)
.The text was updated successfully, but these errors were encountered: