1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00
This commit is contained in:
zYne 2007-06-13 22:10:21 +00:00
parent 6b5bfea300
commit dc2e1d31cb

View file

@ -76,6 +76,16 @@ class Doctrine_Connection_Sqlite extends Doctrine_Connection_Common
parent::__construct($manager, $adapter); parent::__construct($manager, $adapter);
$this->initFunctions(); $this->initFunctions();
} }
/**
* getDatabaseFile
*
* @param string $name the name of the database
* @return string
*/
public function getDatabaseFile($name)
{
return $name . '.db';
}
/** /**
* initializes database functions missing in sqlite * initializes database functions missing in sqlite
* *