本文整理匯總了PHP中repository::sql方法的典型用法代碼示例。如果您正苦於以下問題:PHP repository::sql方法的具體用法?PHP repository::sql怎麽用?PHP repository::sql使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類repository
的用法示例。
在下文中一共展示了repository::sql方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: createdb
public function createdb()
{
if (!$this->dropdb()) {
return false;
}
if (!$this->db->query(repository::sql())) {
return false;
}
if (!$this->db->query(package::sql())) {
return false;
}
if (!$this->db->query(filelist::sql())) {
return false;
}
if (!$this->db->query(guestbook::sql())) {
return false;
}
if (!$this->db->query("\n\t\t CREATE TABLE IF NOT EXISTS #__mixed (\n\t\t field VARCHAR( 255 ) NOT NULL ,\n value VARCHAR( 255 ) NULL ,\n PRIMARY KEY ( field )\n\t\t ) ENGINE = MyISAM;\n\t\t")) {
return false;
}
if (!$this->db->query("\n\t\t CREATE TABLE IF NOT EXISTS #__searches (\n\t\t dt DATETIME,\n\t\t sname VARCHAR(50),\n\t\t sdesc VARCHAR(50),\n\t\t sfile VARCHAR(50),\n\t\t ip VARCHAR(15),\n\t\t srepo INT,\n\t\t results INT,\n\t\t duration INT\n\t\t ) ENGINE = MyISAM;\n\t ")) {
return false;
}
$this->db->query("INSERT INTO #__mixed (field,value) value ('count_visits','1');");
$this->db->query("INSERT INTO #__mixed (field,value) value ('count_searches','1');");
$this->db->query("INSERT INTO #__mixed (field,value) value ('count_srctxt','1');");
$this->db->query("INSERT INTO #__mixed (field,value) value ('count_srcxml','1');");
return true;
}