本文整理汇总了PHP中SQLite3::getOne方法的典型用法代码示例。如果您正苦于以下问题:PHP SQLite3::getOne方法的具体用法?PHP SQLite3::getOne怎么用?PHP SQLite3::getOne使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SQLite3
的用法示例。
在下文中一共展示了SQLite3::getOne方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: enableCache
function enableCache($type, $connection, $cache_expire = 600, $table = 'flickr_cache')
{
$db = new SQLite3('flickr.db');
/*
* If high performance is crucial, you can easily comment
* out this query once you've created your database table.
*/
$db->query("\n\t\t\t\tCREATE TABLE IF NOT EXISTS `{$table}` (\n\t\t\t\t\t`request` CHAR( 35 ) NOT NULL ,\n\t\t\t\t\t`response` MEDIUMTEXT NOT NULL ,\n\t\t\t\t\t`expiration` DATETIME NOT NULL ,\n\t\t\t\t\tINDEX ( `request` )\n\t\t\t\t) TYPE = MYISAM");
if ($db->getOne("SELECT COUNT(*) FROM {$table}") > $this->max_cache_rows) {
$db->query("DELETE FROM {$table} WHERE expiration < DATE_SUB(NOW(), INTERVAL {$cache_expire} second)");
$db->query('OPTIMIZE TABLE ' . $this->cache_table);
}
$this->cache = 'db';
$this->cache_db = $db;
$this->cache_table = $table;
$this->cache_expire = $cache_expire;
}