这是我在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方式的代码。
答案 0 :(得分:0)
使用此mysql命令连接到外部数据库:
mysql -h clouddb.com -u root -p dbname;
它要求输入root密码,然后输入密码,然后您可以登录外部数据库!!