]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/WikiDB/backend/PearDB_oci8.php
fix fulltext search,
[SourceForge/phpwiki.git] / lib / WikiDB / backend / PearDB_oci8.php
1 <?php // -*-php-*-
2 rcs_id('$Id: PearDB_oci8.php,v 1.9 2005-11-14 22:24:33 rurban Exp $');
3
4 /**
5  * Oracle extensions for the Pear DB backend.
6  * @author: Philippe.Vanhaesendonck@topgame.be
7  */
8
9 require_once('lib/WikiDB/backend/PearDB_pgsql.php');
10
11 class WikiDB_backend_PearDB_oci8
12 extends WikiDB_backend_PearDB_pgsql
13 {
14     /**
15      * Constructor
16      */
17     function WikiDB_backend_PearDB_oci8($dbparams) {
18         // Backend constructor
19         $this->WikiDB_backend_PearDB($dbparams);
20         
21         // Empty strings are NULLS
22         $this->_expressions['notempty'] = "IS NOT NULL";
23         $this->_expressions['iscontent'] = "DECODE(DBMS_LOB.GETLENGTH(content), NULL, 0, 0, 0, 1)";
24
25         // Set parameters:
26         $dbh = &$this->_dbh;
27         // - No persistent conections (I don't like them)
28         $dbh->setOption('persistent', false);
29         // - Set lowercase compatibility option
30         // - Set numrows as well -- sure why this is needed, but some queries 
31         //   are triggering DB_ERROR_NOT_CAPABLE
32         $dbh->setOption('portability',
33             DB_PORTABILITY_LOWERCASE | DB_PORTABILITY_NULL_TO_EMPTY | DB_PORTABILITY_NUMROWS);
34     }
35
36             
37     /**
38      * Pack tables.
39      */
40     function optimize() {
41         // Do nothing here -- Leave that for the DBA
42         // Cost Based Optimizer tuning vary from version to version
43         return 1;
44     }
45
46     /**
47      * Lock all tables we might use.
48      */
49     function _lock_tables($write_lock=true) {
50         $dbh = &$this->_dbh;
51         
52         // Not sure if we really need to lock tables here, the Oracle row
53         // locking mechanism should be more than enough
54         // For the time being, lets stay on the safe side and lock...
55         if ($write_lock) {
56             // Next line is default behaviour, so just skip it
57             // $dbh->query("SET TRANSACTION READ WRITE");
58             foreach ($this->_table_names as $table) {
59                 $dbh->query("LOCK TABLE $table IN EXCLUSIVE MODE");
60             }
61         } else {
62             // Just ensure read consistency
63             $dbh->query("SET TRANSACTION READ ONLY");
64         }
65     }
66 };
67
68 class WikiDB_backend_PearDB_oci8_search
69 extends WikiDB_backend_PearDB_search
70 {
71     // If we want case insensitive search, one need to create a Context
72     // Index on the CLOB. While it is very efficient, it requires the
73     // Intermedia Text option, so let's stick to the 'simple' thing
74     // Note that this does only an exact fulltext search, not using MATCH or LIKE.
75     function _fulltext_match_clause($node) {
76         if ($this->isStoplisted($node))
77             return "1=1";
78         $page = $node->sql();
79         $exactword = $node->_sql_quote($node->word);
80         return ($this->_case_exact
81                 ? "pagename LIKE '$page' OR DBMS_LOB.INSTR(content, '$exactword') > 0"
82                 : "LOWER(pagename) LIKE '$page' OR DBMS_LOB.INSTR(content, '$exactword') > 0");
83     }
84 }
85
86 // (c-file-style: "gnu")
87 // Local Variables:
88 // mode: php
89 // tab-width: 8
90 // c-basic-offset: 4
91 // c-hanging-comment-ender-p: nil
92 // indent-tabs-mode: nil
93 // End:   
94 ?>