You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today I encountered an issue where both the php extensions mysqli and mysqlnd are enabled. Which should be ok.
However all sorts of errors where shown.
Workaround
I also discovered a workaround: disabling of mysqli and enable nd_mysqli
Long term solution
The SQLPersistingCallFactory makes use of mysqli and uses the function get_result and we should create a work around for this so that we are less dependent on the mysqli and the mysqlnd drivers.
Comment
mysqlnd means MySQL Native Driver nd_mysqli means Native Driver MySQLi
The text was updated successfully, but these errors were encountered:
Today I encountered an issue where both the php extensions
mysqli
andmysqlnd
are enabled. Which should be ok.However all sorts of errors where shown.
Workaround
I also discovered a workaround: disabling of
mysqli
and enablend_mysqli
Long term solution
The
SQLPersistingCallFactory
makes use ofmysqli
and uses the functionget_result
and we should create a work around for this so that we are less dependent on themysqli
and themysqlnd
drivers.Comment
mysqlnd
means MySQL Native Drivernd_mysqli
means Native Driver MySQLiThe text was updated successfully, but these errors were encountered: