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
We had something like this in 2013, but we removed it. I can’t remember why. Probably it was some sort of compatibility issue between different database systems. I believe that now it is safe to have something like this in the next release targeting PHP 8. @sorinsarca any thoughts on this?
example :
$db->insert( [ 'tag' => 'asd', 'score' => rand() ], [ 'tag' => 'asd2', 'score' => rand() ], [ 'tag' => 'asd3', 'score' => rand() ], )->into('tags');
Or
$db->insert([ [ 'tag' => 'asd', 'score' => rand() ], [ 'tag' => 'asd2', 'score' => rand() ], [ 'tag' => 'asd3', 'score' => rand() ], ])->into('tags');
The text was updated successfully, but these errors were encountered: