1 配置信息

1.1配置目录:
config/database.php
1.2配置多个数据库
//默认的数据库
'mysql' => [
'driver' => 'mysql',
'host' => env('DB_HOST', 'localhost'),
'port' => env('DB_PORT', ''),
//更多配置
], //可以创建更多的数据库
'mysql' => [
'driver' => 'mysql_2',
'host' => env('DB_HOST', '192.168.1.2'),
'port' => env('DB_PORT', ''),
//更多配置
],

2 使用DB门面进行基本操作

一旦你设置好了数据库连接,就可以使用 DB facade 来进行查找。DB facade 提供每个类型的查找方法:select、update、insert、delete、statement。
 
2.1增->
DB::insert('insert into users (id, name) values (?, ?)', [, 'Dayle']);
2.2删->
$deleted = DB::delete('delete from users');
返回值:删除的行数将会被返回
2.3改->
$affected = DB::update('update users set votes = 100 where name = ?', ['John']);
返回值:该方法会返回此声明所影响的行数
2.4查->
$users = DB::select('select * from users where active = ?', []);
返回值:方法总会返回结果的数组数据。数组中的每个结果都是一个 PHP StdClass 对象,这使你能够访问到结果的值:
访问方法:
foreach ($users as $user) {
echo $user->name;
}
2.5事务处理->
//自动
DB::transaction(function () {
DB::table('users')->update(['votes' => ]);
DB::table('posts')->delete();
});
//手动(可配合try catch使用)
DB::beginTransaction();
if($someContion){
DB::rollback();
return false;
}
DB::commit();
2.6有时候一些数据库操作不应该返回任何参数。对于这种类型的操作,你可以在 DB facade 使用 statement 方法:
DB::statement('drop table users');

3 查询构造器

为什么要使用查询构造器?
1>因为数据库查询构造器提供了方便、流畅的接口,我们不需要再写原生的sql语句,通过查询构造器提供给我们的各种方法来创建及运行数据库查找。这能够满足我们大部分需要,且能在所有被支持的数据库系统中使用。
2>Laravel 的查询构造器使用 PDO 参数绑定,以保护你的应用程序不受数据库注入攻击。在传入字符串作为绑定前不需要先清理它们。
 
如何得到一个查询构造器:
依赖DB门面,使用它提供给我们的table方法,传入表名,即可获取该表的查询构建器,在此基础上我们可以使用强大的链式调用直到得到最终结果。

3.1 获取结果

3.1.1 从数据表中获取所有的数据列
$users = DB::table('users')->get();
返回值: 一个数组结果,其中每一个结果都是 PHP StdClass 对象的实例,可以将列作为属性访问每个列的值。
访问方法:
foreach ($users as $user) {
echo $user->name;
//操作的是对象的属性
}
3.1.2 从数据表中获取单个列或行
1>取出单行数据,使用first 方法。
$user = DB::table('users')->where('name', 'John')->first();
返回值:单个 StdClass 对象: 访问方法:echo $user->name;
 
2>从单行数据中取出单个值,使用 value 方法。
$email = DB::table('users')->where('name', 'John')->value('email');
返回值:直接返回字段的值:
 
3.1.3 从数据表中将结果切块
若你需要操作数千条数据库记录,则可考虑使用 chunk 方法。这个方法一次只取出一小「块」结果,并会将每个区块传给一个闭包进行处理。
例如,让我们将整个 user 数据表进行切块,每次处理 100 条记录:
DB::table('users')->chunk(, function($users) {
foreach ($users as $user) {
//
}
});
你可以从闭包中返回 false,以停止对后续切块的处理:
DB::table('users')->chunk(, function($users) {
// 处理记录…
return false;
});
3.1.4 获取字段值列表
若你想要获取一个包含单个字段值的数组,你可以使用pluck方法
$titles = DB::table('roles')->pluck('title'); 
返回值:在这个例子中,我们将取出 role 数据表 title 字段的数组:
使用方法:
foreach ($titles as $title) {
echo $title;
}
你也可以在返回的数组中指定自定义的键值字段:
$roles = DB::table('roles')->pluck('title', 'name');
foreach ($roles as $name => $title) {
echo $title;
}

3.2 select的用法

3.2.1 指定一个 Select 子句
//指定字段
$users = DB::table('users')->select('name', 'email as user_email')->get();
//distinct 方法允许你强制让查找返回不重复的结果:
$users = DB::table('users')->distinct()->get();
//已有一个实例,希望在select 子句中再加入一个字段,则可以使用 addSelect 方法:
$query = DB::table('users')->select('name');
$users = $query->addSelect('age')->get();
3.2.2 原始表达式
//DB::raw 方法可以防止注入
$users = DB::table('users') ->select(DB::raw('count(*) as user_count, status')) ->where('status', '<>', 1) ->groupBy('status') ->get();

3.3 join的用法

3.3.1 基本用法(inner join)
$users = DB::table('users')
->join('contacts', 'users.id', '=', 'contacts.user_id')
->join('orders', 'users.id', '=', 'orders.user_id')
->select('users.*', 'contacts.phone', 'orders.price')
->get();
如果想用左连接或者右连接,则使用leftjoin,rightjoin替换join即可
3.3.2 高级的 Join 语法
你也可以指定更高级的 join 子句。让我们以传入一个闭包当作 join 方法的第二参数来作为开始。此闭包会接收 JoinClause 对象,让你可以在 join 子句上指定约束:
DB::table('users')
->join('contacts', function ($join) {
$join->on('users.id', '=', 'contacts.user_id')->orOn(...);
})
->get();
若你想要在连接中使用「where」风格的子句,则可以在连接中使用 where 和 orWhere 方法。这些方法会比较字段和一个值,来代替两个字段的比较:
DB::table('users')
->join('contacts', function ($join) {
$join->on('users.id', '=', 'contacts.user_id')
->where('contacts.user_id', '>', );
})
->get();
这里要提一下如果闭包函数functiton(){}中5是个变量,我们需要传过去那么应该这样写
function ($join) use($num){ $join->on('users.id', '=', 'contacts.user_id') ->where('contacts.user_id', '>', $num);
如果没有use($num)外面的$num是没法传递到where子句的

3.4 where的用法

3.4.1 基本用法
$users = DB::table('users')->where('votes', '=', )->get();
$users = DB::table('users')->where('name', 'like', 'T%')->get();
$users = DB::table('users')->where('votes', )->get(); //省略了等号
$users = DB::table('users')->where('votes', '>', ) ->orWhere('name', 'John')->get();
$users = DB::table('users')->whereBetween('votes', [, ])->get(); //一个字段的值介于两个值之间
$users = DB::table('users')->whereNotBetween('votes', [, ])->get(); //一个字段的值落在两个值之外
$users = DB::table('users')->whereIn('id', [, , ])->get(); //字段的值包含在指定的数组之内
$users = DB::table('users')->whereNotIn('id', [, , ])->get(); //字段的值不包含在指定的数组之内
$users = DB::table('users')->whereNull('updated_at')->get(); //指定列的值为 NULL
$users = DB::table('users')->whereNotNull('updated_at')->get(); //一个列的值不为 NULL
3.4.2 高级用法
将约束分组
DB::table('users')
->where('name', '=', 'John')
->orWhere(function ($query) {
$query->where('votes', '>', )
->where('title', '<>', 'Admin');
})
->get();
上面例子会将闭包传入 orWhere 方法,以告诉查询语句构造器开始一个约束分组。此闭包接收一个查询语句构造器的实例,你可用它来设置应包含在括号分组内的约束。上面的例子会生成以下 SQL:
select * from users where name = 'John' or (votes >  and title <> 'Admin')
3.5 orderBy,groupBy,having
//排序
$users = DB::table('users') ->orderBy('name', 'desc') ->get();
//随机排序
$randomUser = DB::table('users') ->inRandomOrder() ->first();
//分组
$users = DB::table('users') ->groupBy('account_id') ->having('account_id', '>', ) ->get();
//havingRaw 方法可用来将原始字符串设置为 having 子句的值
$users = DB::table('orders') ->select('department', DB::raw('SUM(price) as total_sales')) ->groupBy('department') ->havingRaw('SUM(price) > 2500') ->get();
3.6 条件查询语句
可以使用方法 when 来构建条件查询语句,只有当 when 的第一次参数为 true 的话,匿名函数里的 where 语句才会被执行:
$role = $request->input('role');
$users = DB::table('users')
->when($role, function ($query) use ($role) {
return $query->where('role_id', $role);
})
->get();
3.7 insert的用法
//插入一组数据
DB::table('users')->insert( ['email' => 'john@example.com', 'votes' => ] );
//插入多组数据
DB::table('users')->insert([ ['email' => 'taylor@example.com', 'votes' => ], ['email' => 'dayle@example.com', 'votes' => ] ]);
//若数据表有自动递增的 id,则可使用 insertGetId 方法来插入记录并获取其 ID:
$id = DB::table('users')->insertGetId( ['email' => 'john@example.com', 'votes' => ] );
3.8 update的用法
DB::table('users') ->where('id', ) ->update(['votes' => ]);
3.9 delete
DB::table('users')->delete();
DB::table('users')->where('votes', '<', )->delete();
//若你希望截去整个数据表的所有数据列,并将自动递增 ID 重设为零,则可以使用 truncate 方法:
DB::table('users')->truncate();
3.10悲观锁定
查询语句构造器也包含一些可用以协助你在 select 语法上作「悲观锁定」的函数。若要以「共享锁」来运行语句,则可在查找上使用 sharedLock 方法。共享锁可避免选择的数据列被更改,直到事务被提交为止:
DB::table('users')->where('votes', '>', )->sharedLock()->get();
此外,你也可以使用 lockForUpdate 方法。「用以更新」锁可避免数据列被其它共享锁修改或选取:
DB::table('users')->where('votes', '>', )->lockForUpdate()->get();
 
 
 
 
 

laravel5.2总结--数据库操作的更多相关文章

  1. 如何在高并发环境下设计出无锁的数据库操作(Java版本)

    一个在线2k的游戏,每秒钟并发都吓死人.传统的hibernate直接插库基本上是不可行的.我就一步步推导出一个无锁的数据库操作. 1. 并发中如何无锁. 一个很简单的思路,把并发转化成为单线程.Jav ...

  2. 【知识必备】ezSQL,最好用的数据库操作类,让php操作sql更简单~

    最近用php做了点小东东,用上了ezSQL,感觉真的很ez,所以拿来跟大家分享一下~ ezSQL是一个非常好用的PHP数据库操作类.著名的开源博客WordPress的数据库操作就使用了ezSQL的My ...

  3. MySQL 系列(二) 你不知道的数据库操作

    第一篇:MySQL 系列(一) 生产标准线上环境安装配置案例及棘手问题解决 第二篇:MySQL 系列(二) 你不知道的数据库操作 本章内容: 查看\创建\使用\删除 数据库 用户管理及授权实战 局域网 ...

  4. ABP创建数据库操作步骤

    1 ABP创建数据库操作步骤 1.1 SimpleTaskSystem.Web项目中的Web.config文件修改数据库配置. <add name="Default" pro ...

  5. 【第一篇】ASP.NET MVC快速入门之数据库操作(MVC5+EF6)

    目录 [第一篇]ASP.NET MVC快速入门之数据库操作(MVC5+EF6) [第二篇]ASP.NET MVC快速入门之数据注解(MVC5+EF6) [第三篇]ASP.NET MVC快速入门之安全策 ...

  6. django数据库操作和中间件

    数据库配置 django的数据库相关表配置在models.py文件中,数据库的连接相关信息配置在settings.py中 models.py相关相关参数配置 from django.db import ...

  7. [Android Pro] 完美Android Cursor使用例子(Android数据库操作)

    reference to : http://www.ablanxue.com/prone_10575_1.html 完美 Android Cursor使用例子(Android数据库操作),Androi ...

  8. phpcms v9 中的数据库操作函数

    1.查询 $this->select($where = '', $data = '*', $limit = '', $order = '', $group = '', $key='')   返回 ...

  9. Android打造属于自己的数据库操作类。

    1.概述 开发Android的同学都知道sdk已经为我们提供了一个SQLiteOpenHelper类来创建和管理SQLite数据库,通过写一个子类去继承它,就可以方便的创建.管理数据库.但是当我们需要 ...

随机推荐

  1. es6-Module 的加载实现

    浏览器加载 传统方法 在 HTML 网页中,浏览器通过<script>标签加载 JavaScript 脚本. <!-- 页面内嵌的脚本 --> <script type= ...

  2. Today is the first day of the rest of your life.

    Today is the first day of the rest of your life. 今天是你余下人生的第一天.

  3. 《C++面向对象程序设计》之变量的生存期

    <C++面向对象程序设计>之变量的生存期 静态生存期 (1)全局静态生存期:在函数体外声明,作用域从声明处开始到文件结尾处结束,称其有文件作用域,相当于全局变量 . (2)局部静态生存期: ...

  4. 数据字典的设计--3.首页添加删除表格(JS实现)

    页面效果: JS代码: 1.添加表格 function insertRows(){ //获取表格对象 var tb1 = $("#dictTbl"); var tempRow = ...

  5. Graylog+elasticsearch+mongodb集群+nginx负载均衡前端

    网上有张图画的很好,搜索有关它的配置文章,google里有几篇英文的,都是依靠haproxy等或别的什么实现,没有纯粹的Graylog+elasticsearch+mongodb集群,项目需要,只有自 ...

  6. pat甲级1016

    1016 Phone Bills (25)(25 分) A long-distance telephone company charges its customers by the following ...

  7. pta 编程题13 File Transfer

    其它pta数据结构编程题请参见:pta 这道题考察的是union-find并查集. 开始把数组中每个元素初始化为-1,代表没有父节点.为了使树更加平衡,可以让每一个连通分量的树根的负值代表这个连通分量 ...

  8. find - 递归地在层次目录中处理文件

    总览 SYNOPSIS find [path...] [expression] 描述 DESCRIPTION 这个文档是GNU版本 find 命令的使用手册. find 搜索目录树上的每一个文件名,它 ...

  9. thymeleaf获取当前时间并格式化输出

    有时候会需要在模板中直接打印时间的需求,如果输出一个时间还需要在java类中去获取model的话,那未免也太麻烦了,以下为thymeleaf在模板中直接获取时间戳并格式化输的代码 获取时间戳 < ...

  10. python 线程even

    import threading,time import random def door(nums): num=1#电梯在一楼 while True: print("this door is ...