2

这是我在 Magento 中使用的核心 PHP 代码。

        $model_moodle = mysql_connect("localhost","root","123456")  
            or die("Unable to connect to MySQL");       
        //select a database to work with
        $selected = mysql_select_db("moodle",$model_moodle) 
          or die("Could not select moodle");
        //execute the SQL query and return records
        $result = mysql_query("SELECT id FROM mdl_course where shortname ='".$data."'");        
        //fetch tha data from the database 
        while ($row = mysql_fetch_array($result)) {        
           $course_id = $row['id'];//display the results          
        }
        //echo "Cource id is=".$course_id;
        //close the connection
        mysql_close($model_moodle);

我需要使用此代码,但使用 Magento 外部数据库连接。
我在 Magento 中使用“Moodle”数据库。但我需要 Magento 方式的代码。

4

1 回答 1

0

使用这个 mysql 命令连接到外部数据库:

mysql -h clouddb.com -u root -p 数据库名;

它询问root密码,然后输入密码,然后您可以登录到您的外部数据库!

于 2013-11-05T05:00:42.383 回答