From a6a3a6e0c271099b6f199c7363eba572fc7b5266 Mon Sep 17 00:00:00 2001 From: nikrou Date: Mon, 29 Mar 2010 18:16:33 +0000 Subject: 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 --- include/dblayer/functions_pdo-sqlite.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/dblayer/functions_pdo-sqlite.inc.php') diff --git a/include/dblayer/functions_pdo-sqlite.inc.php b/include/dblayer/functions_pdo-sqlite.inc.php index 33a864980..9d58922dc 100644 --- a/include/dblayer/functions_pdo-sqlite.inc.php +++ b/include/dblayer/functions_pdo-sqlite.inc.php @@ -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) -- cgit v1.2.3