dmnbars

Results 2 comments of dmnbars

@jukylin any news about 3.0 date of release?

or we can use one class (Phpmig\Adapter\Doctrine\DBAL) and statements like this: ```php if (\method_exists($this->connection, 'fetchAllAssociative')) { $all = $this->connection->fetchAllAssociative($sql); } else { $all = $this->connection->fetchAll($sql); } ``` and ```php if...