使用Laravel来展示MariaDB的数据
我参考了下一页。
使用Laravel入门[MVC]模型从数据库中获取和显示数据。
只需要一个选项,以下是对原文的汉语表述:
MariaDB 是一种数据库管理系统。
用户名:Scott
密码:Tiger123
假设数据库名称为:city,
其中有一个名为 “cities” 的表格。
创建用户和数据库的方式
$ sudo mysql -uroot
mysql> create schema city;
mysql> create user 'scott'@'localhost' identified by 'tiger123';
mysql> grant all on city.* to 'scott'@'localhost';
mysql> flush privileges;
$ mysql -uscott -ptiger123 city
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 11
Server version: 10.1.33-MariaDB MariaDB Server
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [city]> select * from cities;
+-------+--------+------------+------------+
| id | name | population | date_mod |
+-------+--------+------------+------------+
| t3329 | 新見 | 259718 | 1921-05-14 |
| t3323 | 津山 | 621597 | 1921-06-14 |
| t3324 | 玉野 | 952178 | 1921-04-30 |
| t3326 | 井原 | 213592 | 1921-01-10 |
| t3328 | 高梁 | 785231 | 1921-12-28 |
| t3321 | 岡山 | 397152 | 1921-10-12 |
| t3322 | 倉敷 | 892453100 | 2018-05-20 |
| t3327 | 総社 | 482967 | 1921-10-19 |
+-------+--------+------------+------------+
8 rows in set (0.00 sec)
MariaDB [city]>