bool PDO::setAttribute ( $attribute, $value );
and when i delete $this->_config['attrs'] like :
$this->_connection = new \PDO(
$this->_config['connection']['dsn'],
$this->_config['connection']['username'],
$this->_config['connection']['password']
);
it work correct!
unfortunately, there is no possibility pagination on sqlsrv!
as sql server 2012 microsoft add OFFSET and FETCH
sample :
SELECT field FROM table ORDER BY field [or(SELECT 0) for not order] OFFSET 0 ROWS FETCH NEXT 20 ROWS ONLY
how can i check connection type in Database_Query_Builder_Select class ?
It looks like you're new here. If you want to get involved, click one of these buttons!