📅  最后修改于: 2020-10-23 08:03:53             🧑  作者: Mango
Laravel使数据库处理变得非常容易。 Laravel目前支持以下4个数据库-
可以使用原始SQL,流利的查询生成器和Eloquent ORM触发对数据库的查询。为了了解Laravel的所有CRUD(创建,读取,更新,删除)操作,我们将使用简单的学生管理系统。
如下表所示,在config / database.php文件中配置数据库,并在MySQL中使用结构创建学院数据库。
数据库:大学
表:学生
Column Name | Column Datatype | Extra |
---|---|---|
Id | int(11) | Primary key | Auto increment |
Name | varchar(25) |
我们将看到如何使用学生表中的Laravel从数据库中添加,删除,更新和检索记录。
Sr.No. | Record & Description |
---|---|
1 | Insert Records
We can insert the record using the DB facade with insert method. |
2 | Retrieve Records
After configuring the database, we can retrieve the records using the DB facade with select method. |
3 | Update Records
We can update the records using the DB facade with update method. |
4 | Delete Records
We can delete the record using the DB facade with the delete method. |