Source for file sqlite.php
Documentation is available at sqlite.php
/* Creating a new database connection. */
$conf = array ('filename' => 'log.db', 'mode' => 0666 , 'persistent' => true );
$logger = & Log::factory('sqlite', 'log_table', 'ident', $conf);
/* Using an existing database connection. */
$db = sqlite_open ('log.db', 0666 , $error);
$logger = & Log::factory('sqlite', 'log_table', 'ident', $db);
Documentation generated on Mon, 11 Mar 2019 14:42:40 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|