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
as far as I noticed when you want to update using update or updateOrInsert the builder throws an error
source()->from('countries')->update([
'name' => 'Serbiasss',
'code' => 'RS',
'is_active' => 1
]);
source()->from('countries')->where('name', 'Serbias')->update([
'name' => 'Serbiasss12',
'code' => 'RS',
'is_active' => 1
]);
The problem is caused by mismatching between names of a placeholders and bonded parameters
The text was updated successfully, but these errors were encountered:
as far as I noticed when you want to update using update or updateOrInsert the builder throws an error
source()->from('countries')->update([
'name' => 'Serbiasss',
'code' => 'RS',
'is_active' => 1
]);
source()->from('countries')->where('name', 'Serbias')->update([
'name' => 'Serbiasss12',
'code' => 'RS',
'is_active' => 1
]);
The problem is caused by mismatching between names of a placeholders and bonded parameters
The text was updated successfully, but these errors were encountered: