2006-08-22 03:16:55 +04:00
< ? php
2006-12-29 17:01:31 +03:00
/*
2006-10-06 20:50:00 +04:00
* $Id $
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* " AS IS " AND ANY EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT
* LIMITED TO , THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED . IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT , INDIRECT , INCIDENTAL ,
* SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES ( INCLUDING , BUT NOT
* LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; LOSS OF USE ,
* DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY , OR TORT
* ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE .
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL . For more information , see
* < http :// www . phpdoctrine . com >.
*/
2007-10-29 22:50:16 +03:00
2006-10-06 20:50:00 +04:00
Doctrine :: autoload ( " Doctrine_Connection_Common " );
2007-10-29 22:50:16 +03:00
2006-08-22 03:16:55 +04:00
/**
2006-10-06 20:50:00 +04:00
* Doctrine_Connection_Sqlite
*
2006-11-14 01:08:41 +03:00
* @ package Doctrine
2007-10-04 01:43:22 +04:00
* @ subpackage Connection
2006-11-14 01:08:41 +03:00
* @ license http :// www . opensource . org / licenses / lgpl - license . php LGPL
* @ author Konsta Vesterinen < kvesteri @ cc . hut . fi >
2006-11-01 14:08:15 +03:00
* @ author Lukas Smith < smith @ pooteeweet . org > ( PEAR MDB2 library )
2006-11-14 01:08:41 +03:00
* @ version $Revision $
* @ link www . phpdoctrine . com
* @ since 1.0
*/
2006-12-29 17:40:47 +03:00
class Doctrine_Connection_Sqlite extends Doctrine_Connection_Common
{
2006-10-06 20:50:00 +04:00
/**
2006-10-31 02:27:26 +03:00
* @ var string $driverName the name of this connection driver
2006-10-06 20:50:00 +04:00
*/
2006-10-31 02:27:26 +03:00
protected $driverName = 'Sqlite' ;
2007-10-21 10:23:59 +04:00
2006-10-31 15:54:58 +03:00
/**
* the constructor
*
* @ param Doctrine_Manager $manager
* @ param PDO $pdo database handle
*/
2006-12-29 17:40:47 +03:00
public function __construct ( Doctrine_Manager $manager , $adapter )
{
2007-10-29 22:50:16 +03:00
$this -> supported = array ( 'sequences' => 'emulated' ,
2006-10-31 15:54:58 +03:00
'indexes' => true ,
'affected_rows' => true ,
'summary_functions' => true ,
'order_by_text' => true ,
'current_id' => 'emulated' ,
'limit_queries' => true ,
'LOBs' => true ,
'replace' => true ,
'transactions' => true ,
'savepoints' => false ,
'sub_selects' => true ,
'auto_increment' => true ,
'primary_key' => true ,
'result_introspection' => false , // not implemented
'prepared_statements' => 'emulated' ,
'identifier_quoting' => true ,
'pattern_escaping' => false ,
);
2007-10-29 22:50:16 +03:00
parent :: __construct ( $manager , $adapter );
2007-09-06 02:03:57 +04:00
if ( $this -> isConnected ) {
$this -> dbh -> sqliteCreateFunction ( 'mod' , array ( 'Doctrine_Expression_Sqlite' , 'modImpl' ), 2 );
$this -> dbh -> sqliteCreateFunction ( 'md5' , 'md5' , 1 );
$this -> dbh -> sqliteCreateFunction ( 'now' , 'time' , 0 );
}
2006-10-31 15:54:58 +03:00
}
2007-10-21 10:23:59 +04:00
2007-06-14 02:10:21 +04:00
/**
2007-06-20 03:33:04 +04:00
* initializes database functions missing in sqlite
2007-06-14 02:10:21 +04:00
*
2007-06-20 03:33:04 +04:00
* @ see Doctrine_Expression
* @ return void
2007-06-14 02:10:21 +04:00
*/
2007-06-20 03:33:04 +04:00
public function connect ()
2007-06-14 02:10:21 +04:00
{
2007-09-06 02:03:57 +04:00
if ( $this -> isConnected ) {
return false ;
}
2007-06-20 03:33:04 +04:00
parent :: connect ();
2007-08-25 04:14:14 +04:00
2007-06-20 03:33:04 +04:00
$this -> dbh -> sqliteCreateFunction ( 'mod' , array ( 'Doctrine_Expression_Sqlite' , 'modImpl' ), 2 );
2007-08-25 04:14:14 +04:00
$this -> dbh -> sqliteCreateFunction ( 'md5' , 'md5' , 1 );
2007-06-20 03:33:04 +04:00
$this -> dbh -> sqliteCreateFunction ( 'now' , 'time' , 0 );
2007-06-14 02:10:21 +04:00
}
2007-10-21 10:23:59 +04:00
2006-11-02 16:34:33 +03:00
/**
2008-01-23 00:42:17 +03:00
* createDatabase
2007-01-11 14:57:48 +03:00
*
2008-01-23 00:42:17 +03:00
* @ return void
2006-11-02 16:34:33 +03:00
*/
2008-01-23 00:42:17 +03:00
public function createDatabase ()
2006-12-29 17:40:47 +03:00
{
2008-01-23 00:42:17 +03:00
try {
2008-01-23 00:58:03 +03:00
if ( ! $dsn = $this -> getOption ( 'dsn' )) {
throw new Doctrine_Connection_Exception ( 'You must create your Doctrine_Connection by using a valid Doctrine style dsn in order to use the create/drop database functionality' );
}
2008-01-23 00:42:17 +03:00
2008-01-23 00:58:03 +03:00
$info = $this -> getManager () -> parseDsn ( $dsn );
2008-01-23 00:42:17 +03:00
$this -> export -> createDatabase ( $info [ 'database' ]);
return 'Successfully created database for connection "' . $this -> getName () . '" at path "' . $info [ 'database' ] . '"' ;
} catch ( Exception $e ) {
return $e ;
}
}
/**
* dropDatabase
*
* @ return void
*/
public function dropDatabase ()
{
try {
2008-01-23 00:58:03 +03:00
if ( ! $dsn = $this -> getOption ( 'dsn' )) {
throw new Doctrine_Connection_Exception ( 'You must create your Doctrine_Connection by using a valid Doctrine style dsn in order to use the create/drop database functionality' );
}
$info = $this -> getManager () -> parseDsn ( $dsn );
2008-01-23 00:42:17 +03:00
$this -> export -> dropDatabase ( $info [ 'database' ]);
return 'Successfully dropped database for connection "' . $this -> getName () . '" at path "' . $info [ 'database' ] . '"' ;
} catch ( Exception $e ) {
return $e ;
}
2006-11-02 16:34:33 +03:00
}
2008-01-23 00:42:17 +03:00
}