mysql-This database-connected statement is available in the SAE, but not in Bae, does anyone know why?

Source: Internet
Author: User
Keywords MySQL SAE Bae database php
Mysqlsaebae database PHP

The following statements, which can be applied in the SAE, are not effective in BAE.

 //连接数据库$con = mysql_connect("{$host}:{$port}",$user,$pwd,true) or die("Connect Server Failed: " . mysql_error());//进入某个数据库mysql_select_db($dbname,$con)) or die("Select Database Failed: " . mysql_error($con));

In Baidu, use the following statement to

 //连接数据库$con = mysql_connect("{$host}:{$port}",$user,$pwd,true);if(!$con){    die("Connect Server Failed: " . mysql_error());}//进入某个数据库if(!mysql_select_db($dbname,$con)) {    die("Select Database Failed: " . mysql_error($con));}
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.