Ignore:
Timestamp:
2010/11/18 20:37:07 (16 years ago)
Author:
nanasess
bzr:base-revision:
svn-v4:1e3b908f-19a9-db11-a64c-001125224ba8:branches/version-2_5-dev:19674
bzr:committer:
Kentaro Ohkouchi <[email protected]>
bzr:file-ids:

data/class/SC_CartSession.php 15078@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2FSC_CartSession.php
data/class/SC_Display.php 18986@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Fcamp%2Fcamp-2_5-E%2Fdata%2Fclass%2FSC_Display.php
data/class/SC_Query.php 15078@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2FSC_Query.php
data/class/SC_Response.php 18986@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Fcamp%2Fcamp-2_5-E%2Fdata%2Fclass%2FSC_Response.php
data/class/pages/products/LC_Page_Products_List.php 15154@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Fpages%2Fproducts%2FLC_Page_Products_List.php
data/class/util/SC_Utils.php 15078@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Futil%2FSC_Utils.php
data/module/MDB2/Driver/pgsql.php pgsql.php-20100706081907-4gdfmx4t4tyz1x8a-14
html/install/index.php 16809@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fhtml%2Finstall%2Findex.php
html/install/sql/create_table_mysql.sql 15078@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fhtml%2Finstall%2Fsql%2Fcreate_table_mysql.sql
patches/MDB2_Driver_pgsql.php.patch mdb2_driver_pgsql.ph-20101118112629-azips61wd3pc7ri9-1
bzr:mapping-version:
v4
bzr:repository-uuid:
1e3b908f-19a9-db11-a64c-001125224ba8
bzr:revision-id:
[email protected]
bzr:revno:
2405
bzr:revprop:branch-nick:
branches/version-2_5-dev
bzr:root:
branches/version-2_5-dev
bzr:timestamp:
2010-11-18 20:37:01.581000090 +0900
bzr:user-agent:
bzr2.2.1+bzr-svn1.0.4
svn:original-date:
2010-11-18T11:37:01.581000Z
Message:
  • PHP4対応(#854)
    • MDB2 の PostgreSQL 用ドライバを修正したため, パッチを添付
  • r19661 で発生した typo 修正
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/SC_Query.php

    r19670 r19675  
    658658     */ 
    659659    function setVal($seq_name, $start) { 
    660         $this->conn->loadModule('Manager'); 
     660        $objManager =& $this->conn->loadModule('Manager'); 
    661661        // XXX エラーハンドリングを行う 
    662         $this->conn->dropSequence($seq_name); 
    663         return $this->conn->createSequence($seq_name, $start); 
     662        $objManager->dropSequence($seq_name); 
     663        return $objManager->createSequence($seq_name, $start); 
    664664    } 
    665665 
     
    696696     */ 
    697697    function listSequences() { 
    698         $this->conn->loadModule('Manager'); 
    699         return $this->conn->listSequences(); 
     698        $objManager =& $this->conn->loadModule('Manager'); 
     699        return $objManager->listSequences(); 
    700700    } 
    701701 
     
    706706     */ 
    707707    function listTables() { 
    708         $this->conn->loadModule('Manager'); 
    709         return $this->conn->listTables(); 
     708        $objManager =& $this->conn->loadModule('Manager'); 
     709        return $objManager->listTables(); 
    710710    } 
    711711 
     
    717717     */ 
    718718    function listTableFields($table) { 
    719         $this->conn->loadModule('Manager'); 
    720         return $this->conn->listTableFields($table); 
     719        $objManager =& $this->conn->loadModule('Manager'); 
     720        return $objManager->listTableFields($table); 
    721721    } 
    722722 
     
    728728     */ 
    729729    function listTableIndexes($table) { 
    730         $this->conn->loadModule('Manager'); 
    731         return $this->conn->listTableIndexes($table); 
     730        $objManager =& $this->conn->loadModule('Manager'); 
     731        return $objManager->listTableIndexes($table); 
    732732    } 
    733733     
     
    740740     */ 
    741741    function createIndex($table, $name, $definition) { 
    742         $this->conn->loadModule('Manager'); 
    743         return $this->conn->createIndex($table, $name, $definition); 
     742        $objManager =& $this->conn->loadModule('Manager'); 
     743        return $objManager->createIndex($table, $name, $definition); 
    744744    } 
    745745 
     
    751751     */ 
    752752    function dropIndex($table, $name) { 
    753         $this->conn->loadModule('Manager'); 
    754         return $this->conn->dropIndex($table, $name); 
     753        $objManager =& $this->conn->loadModule('Manager'); 
     754        return $objManager->dropIndex($table, $name); 
    755755    } 
    756756     
Note: See TracChangeset for help on using the changeset viewer.