Feature 511 : fix problems with calendar functions

add pwg_db_concat() function

git-svn-id: http://piwigo.org/svn/trunk@4833 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
nikrou
2010-02-03 09:26:32 +00:00
parent 7fda6e5af9
commit e1de0d6faf
8 changed files with 75 additions and 25 deletions
+6
View File
@@ -392,6 +392,12 @@ WHERE tablename like \''.$prefixeTable.'%\'';
);
}
function pwg_db_concat($array)
{
$string = implode($array, ',');
return 'ARRAY_TO_STRING(ARRAY['.$string.'])';
}
function pwg_db_concat_ws($array, $separator)
{
$string = implode($array, ',');