📅  最后修改于: 2020-11-27 05:27:19             🧑  作者: Mango
与MariaDB建立连接的一种方法是在命令提示符下使用mysql二进制文件。
查看下面给出的示例。
[root@host]# mysql -u root -p
Enter password:******
上面给出的代码连接到MariaDB,并提供用于执行SQL命令的命令提示符。输入代码后,将显示一条欢迎消息,指示连接成功,并显示版本号。
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 122323232
Server version: 5.5.40-MariaDB-log
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
该示例使用root用户访问权限,但是具有特权的任何用户当然都可以访问MariaDB提示符并执行操作。
通过exit命令从MariaDB断开连接,如下所示-
mysql> exit
连接和断开MariaDB的另一种方法是使用PHP脚本。 PHP提供了mysql_connect()函数来打开数据库连接。它使用五个可选参数,并在成功连接后返回MariaDB链接标识符,如果连接失败则返回false。它还提供了mysql_close()函数来关闭数据库连接,该函数使用单个参数。
查看以下PHP连接脚本语法-
connection mysql_connect(server,user,passwd,new_link,client_flag);
参数的说明如下-
Sr.No | Parameter & Description |
---|---|
1 |
server This optional parameter specifies the host name running the database server. Its default value is “localhost:.3036.” |
2 |
user This optional parameter specifies the username accessing the database. Its default value is the owner of the server. |
3 |
passwd This optional parameter specifies the user’s password. Its default value is blank. |
4 |
new_link This optional parameter specifies that on a second call to mysql_connect() with identical arguments, rather than a new connection, the identifier of the current connection will be returned. |
5 |
client flags This optional parameter uses a combination of the following constant values −
|
查看下面给出的PHP断开连接脚本语法-
bool mysql_close ( resource $link_identifier );
如果您省略该资源,则最近打开的资源将关闭。成功关闭时返回true或false。
尝试以下示例代码连接MariaDB服务器-
Connect to MariaDB Server
成功连接后,您将看到以下输出-
mysql> Connected successfully