Php connection to mysql, oracle, and mssql database connection code _ PHP Tutorial

Source: Internet
Author: User
Tags mysql tutorial
Php connection code for connecting to mysql, oracle, and mssql databases. Php connection to mysql, oracle, mssql database connection code php Tutorial connection to mysql tutorial, oracle, mssql database tutorial connection code mssql $ serverhbds3; $ usernameusername; $ passwordpwd; $ php connection to mysql, oracle, mssql database connection code

Php connection to mysql, oracle, and mssql database connection code
// Mssql

$ Server = 'hbds3 ';
$ Username = 'username ';
$ Password = 'pwd ';
$ Database = 'database ';
$ Conn = mssql_connect ($ server, $ username, $ password)
Or die ("couldn't connect to SQL server on $ server ");
$ Db = mssql_select_db ($ database) or die ("couldn't open database $ database ");

// Oracle

$ Conn = oci_connect ("databasename", "passwd", "sid ");
If (! $ Conn ){
$ E = oci_error ();
Trigger_error (htmlentities ($ e ['message'], ent_quotes), e_user_error );
}

// Mysql

$ Conn = mysql_connect ("localhost", "root", "admin") or die ("database server connection error". mysql_error ());
Mysql_select_db ("admin", $ conn) or die ("database access error". mysql_error ());
Mysql_query ("set names gb2312 ");

Connector php connection to mysql, oracle, mssql database connection code // mssql $ server = 'hbds3'; $ username = 'username'; $ password = 'pwd '; $...

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.