]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/WikiDB/backend/PDO_pgsql.php
Remove rcs_id
[SourceForge/phpwiki.git] / lib / WikiDB / backend / PDO_pgsql.php
1 <?php // -*-php-*-
2 // $Id$
3
4 /*
5  * Copyright 2005 $ThePhpWikiProgrammingTeam
6  *
7  * This file is part of PhpWiki.
8  *
9  * PhpWiki is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * PhpWiki is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with PhpWiki; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  */
23
24 /**
25  * @author: Reini Urban
26  */
27 require_once('lib/WikiDB/backend/PDO.php');
28
29 class WikiDB_backend_PDO_pgsql
30 extends WikiDB_backend_PDO
31 {
32
33     /*
34      * convert from,count to SQL "LIMIT $count OFFSET $from"
35      */
36     function _limit_sql($limit = false) {
37         if ($limit) {
38             list($offset, $count) = $this->limit($limit);
39             if ($offset)
40                 $limit = " LIMIT $count OFFSET $from";
41             else
42                 $limit = " LIMIT $count";
43         } else
44             $limit = '';
45         return $limit;
46     }
47
48     function backendType() {
49         return 'pgsql';
50     }
51 }
52
53 // Local Variables:
54 // mode: php
55 // tab-width: 8
56 // c-basic-offset: 4
57 // c-hanging-comment-ender-p: nil
58 // indent-tabs-mode: nil
59 // End:
60 ?>