1、mysql建用户并授权:
创建用户:
mysql> create user test identified by 'w123123';
Query OK, 0 rows affected (0.16 sec)
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| #mysql50#bin-log |
| mysql |
| performance_schema |
| test |
+--------------------+
5 rows in set (0.14 sec)
为用户授权:
mysql> grant all privileges on test.* to test@localhost identified by 'w123123';
Query OK, 0 rows affected (0.00 sec)
mysql> use test;
Database changed
mysql> show tables;
+----------------+
| Tables_in_test |
+----------------+
| a |
| mrg |
| t1 |
| t2 |
+----------------+
4 rows in set (0.01 sec)
查看要连接的数据库中表的数据情况:
mysql> select * from t1;
Empty set (0.06 sec)
mysql> select * from t2;
+---+
| a |
+---+
| 1 |
| 2 |
| 3 |
+---+
3 rows in set (0.05 sec)
mysql>
2、PHP连接数据库编码:
喜欢
阅读
┊ 评论
┊ 收藏
┊ 转载
┊
喜欢
�
┊ 打印
┊ 举报
已投稿到: |
排行榜
圈子
|
加载中,请稍候......
前一篇: PHP-开发环境搭建(apache+mysql+php)
后一篇: 64位的windows server 2003运行IIS6运行32位的.NET程序
评论
重要提示:警惕虚假中奖信息 |
[
发评论]
< 前一篇 PHP-开发环境搭建(apache+mysql+php)
后一篇 > 64位的windows server 2003运行IIS6运行32位的.NET程序