zoukankan      html  css  js  c++  java
  • magento 操作数据库

    查:

        $read = Mage::getSingleton(“core/resource”)->getConnection(‘core_read’);
        $sql = “select * from `abc`”;
        $result = $read->fetchAll($sql);  //fetchRow查找一条
     
    增,删,改
        $write = Mage::getSingleton(“core/resource”)->getConnection(‘core_write’);
         $sql = “insert into abc (name)values(‘hello’)”;
         $write->query($sql);
     
    另一种写法:
         $write = Mage::getSingleton(“core/resource”)->getConnection(‘core_write’);
         $table = Mage::getSingleton(‘core/resource’)->getTableName(‘abc’);
         $write->insert($table,array(‘name’=>’hello’));
     
         $write = Mage::getSingleton(“core/resource”)->getConnection(‘core_write’);
        $table = Mage::getSingleton(‘core/resource’)->getTableName(‘abc’);
        $write->update($table,array(‘name’=>’abc’),array(‘id=?’=>3));
     
            $write = Mage::getSingleton(“core/resource”)->getConnection(‘core_write’);
        $table = Mage::getSingleton(‘core/resource’)->getTableName(‘abc’);
        $write->delete($table,array(‘id=?’=>3));
     
         $read = Mage::getSingleton(“core/resource”)->getConnection(‘core_read’);
        $table = Mage::getSingleton(‘core/resource’)->getTableName(‘abc’);
            $result = $read->select()->from(array(‘main_table’=>$table))->where(‘main_table.id=?’,3)->limit(1);
            $products=$read->fetchAll($result);
  • 相关阅读:
    期末考试结束啦!!!
    【sdut2878】Circle
    【HDU4035】Maze
    【ZOJ3329】One Person Game
    【POJ2151】Check the difficulty of problems
    【CodeForces148D】Bag of mice
    【POJ2096】Collecting Bugs
    【HDU3853】LOOPS
    【HDU4405】Aeroplane_chess
    「Luogu P5826 【模板】子序列自动机」
  • 原文地址:https://www.cnblogs.com/zhengyanbin2016/p/5732092.html
Copyright © 2011-2022 走看看