43 lines
1001 B
PHP
43 lines
1001 B
PHP
<?php
|
|
/**
|
|
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later.
|
|
* See the COPYING-README file.
|
|
*/
|
|
|
|
namespace OC\DB;
|
|
|
|
use Doctrine\DBAL\Event\ConnectionEventArgs;
|
|
use Doctrine\DBAL\Events;
|
|
use Doctrine\Common\EventSubscriber;
|
|
|
|
class SQLiteSessionInit implements EventSubscriber {
|
|
/**
|
|
* @var bool
|
|
*/
|
|
private $caseSensitiveLike;
|
|
|
|
/**
|
|
* Configure case sensitive like for each connection
|
|
*
|
|
* @param bool $caseSensitiveLike
|
|
*/
|
|
public function __construct($caseSensitiveLike = true) {
|
|
$this->caseSensitiveLike = $caseSensitiveLike;
|
|
}
|
|
|
|
/**
|
|
* @param ConnectionEventArgs $args
|
|
* @return void
|
|
*/
|
|
public function postConnect(ConnectionEventArgs $args) {
|
|
$sensitive = ($this->caseSensitiveLike) ? 'true' : 'false';
|
|
$args->getConnection()->executeUpdate('PRAGMA case_sensitive_like = ' . $sensitive);
|
|
}
|
|
|
|
public function getSubscribedEvents() {
|
|
return array(Events::postConnect);
|
|
}
|
|
}
|