Fix some issues with database engines :

- insert into syntax not correct for posgresql or sqlite
- add languages table
- incorrect function for row count (sqlite)

git-svn-id: http://piwigo.org/svn/trunk@5452 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
nikrou 2010-03-29 18:16:33 +00:00
parent a37f1fbae1
commit a6a3a6e0c2
8 changed files with 58 additions and 14 deletions

View file

@ -78,11 +78,11 @@ class languages
break;
}
$query = "
INSERT INTO ".LANGUAGES_TABLE."
SET id = '".$language_id."',
name = '".$this->fs_languages[$language_id]."'
;";
$query = '
INSERT INTO '.LANGUAGES_TABLE.'
(id, name)
VALUES(\''.$language_id.'\', \''.$this->fs_languages[$language_id].'\')
;';
pwg_query($query);
break;

View file

@ -114,12 +114,13 @@ class themes
if (empty($errors))
{
$query = "
INSERT INTO ".THEMES_TABLE."
SET id = '".$theme_id."'
, version = '".$this->fs_themes[$theme_id]['version']."'
, name = '".$this->fs_themes[$theme_id]['name']."'
;";
$query = '
INSERT INTO '.THEMES_TABLE.'
(id, version, name)
VALUES(\''.$theme_id.'\',
\''.$this->fs_themes[$theme_id]['version'].'\',
\''.$this->fs_themes[$theme_id]['name'].'\')
;';
pwg_query($query);
}
break;

View file

@ -174,7 +174,7 @@ function pwg_db_changes(PDOStatement $result=null)
function pwg_db_num_rows(PDOStatement $result)
{
return $result->columnCount();
return $result->rowCount();
}
function pwg_db_fetch_assoc($result)

View file

@ -380,7 +380,10 @@ INSERT INTO '.$prefixeTable.'config (param,value,comment)
// PWG_CHARSET is required for building the fs_themes array in the
// themes class
define('PWG_CHARSET', $pwg_charset);
if (!defined('PWG_CHARSET'))
{
define('PWG_CHARSET', $pwg_charset);
}
activate_all_themes();
$insert = array(

View file

@ -56,7 +56,7 @@ foreach ($themes_to_activate as $theme)
{
$query = '
INSERT INTO '.PREFIX_TABLE.'themes
SET id = "'.$theme.'"
(id) VALUES(\''.$theme.'\'
;';
pwg_query($query);
}

View file

@ -205,6 +205,19 @@ CREATE INDEX "images_i5" ON "piwigo_images" ("date_creation");
CREATE INDEX "images_i1" ON "piwigo_images" ("storage_category_id");
-----------------------------------------------------------------------------
-- Table structure for table `piwigo_languages`
-----------------------------------------------------------------------------
DROP TABLE IF EXISTS piwigo_languages;
CREATE TABLE piwigo_languages
(
"id" varchar(64) NOT NULL default '',
"version" varchar(64) NOT NULL default '0',
"name" varchar(64) default NULL,
PRIMARY KEY ("id")
);
-----------------------------------------------------------------------------
-- piwigo_old_permalinks
-----------------------------------------------------------------------------

View file

@ -252,6 +252,20 @@ CREATE INDEX "images_i5" ON "piwigo_images" ("date_creation");
CREATE INDEX "images_i1" ON "piwigo_images" ("storage_category_id");
-----------------------------------------------------------------------------
-- Table structure for table `piwigo_languages`
-----------------------------------------------------------------------------
DROP TABLE IF EXISTS "piwigo_languages";
CREATE TABLE "piwigo_languages" (
"id" varchar(64) NOT NULL default '',
"version" varchar(64) NOT NULL default '0',
"name" varchar(64) default NULL,
PRIMARY KEY ("id")
);
COMMENT ON TABLE "piwigo_languages" IS '';
-----------------------------------------------------------------------------
-- piwigo_old_permalinks
-----------------------------------------------------------------------------

View file

@ -205,6 +205,19 @@ CREATE INDEX "images_i5" ON "piwigo_images" ("date_creation");
CREATE INDEX "images_i1" ON "piwigo_images" ("storage_category_id");
-----------------------------------------------------------------------------
-- Table structure for table `piwigo_languages`
-----------------------------------------------------------------------------
DROP TABLE IF EXISTS piwigo_languages;
CREATE TABLE piwigo_languages
(
"id" varchar(64) NOT NULL default '',
"version" varchar(64) NOT NULL default '0',
"name" varchar(64) default NULL,
PRIMARY KEY ("id")
);
-----------------------------------------------------------------------------
-- piwigo_old_permalinks
-----------------------------------------------------------------------------