* [ ] 功能
* 数据写入
* 参数
| 参数名 | 参数类型 | 参数说明 | 默认值 |
| :---: | :---: | :---: | :---: |
| $data | string | 查询模式, 可选值:空字符(返回新加记录ID值),demo(返回执行相关的 sql 数据),row (返回影响的行数),id (返回新加记录ID值) | 空字符, 默认返回新加记录ID值 |
| $type | string | 数据库类型 | 空字符 |
| $come | string| 执行模式 | 空字符 |
* 场景:user 数据库的 user_account 表有 3 条数据,数据为:
user_account 表
| uid | username |
| :---: | :---: |
| 1 | 张三 |
| 2 | 李四 |
| 3 | 隔壁老王 |
* 用法:
~~~
// 要添加的数据
$data = array(
'username' => '飞天小菜',
);
$res = mysql\User::table('account')->data( $data )->insert();
~~~
执行 sql 语句:
~~~
insert into user.user_account (username) values ('飞天小菜');
~~~
执行结果:
~~~
4
~~~
* 插入成功后:
user_account 表
| uid | username |
| :---: | :---: |
| 1 | 张三 |
| 2 | 李四 |
| 3 | 隔壁老王 |
| 4 | 飞天小菜 |
- 开始使用
- 配置文件
- 路由模式
- AutoLoad类
- 启动文件
- __construct
- SetRouting
- SetAlias
- SetStop
- SetError
- Access
- SetWorker
- SetClassFile
- SetClassDir
- Run
- OpenLoad
- LinuxStartAll
- Session类
- 使用说明
- set
- get
- delete
- pull
- has
- id
- Cookie类
- 使用说明
- set
- get
- delete
- pull
- has
- TempLets类
- 模板语法
- 模板标签
- html
- show
- assign
- obtain
- Request类
- get
- post
- host
- referer
- getip
- localip
- header
- body
- file
- scheme
- protocolversion
- uri
- path
- querystring
- method
- Response
- SendFile
- FileStream
- SendData
- SetStatus
- SetHead
- SetMime
- WebSend
- redirect
- dumpJson
- dump
- come
- ps
- Frame类
- GetWeb
- ViewFile
- RoutingData
- SetClassFile
- SetClassDir
- GetMime
- FileMime
- LoadDir
- StartDir
- IsJson
- ArrJson
- JsonFormat
- ObStart
- GetConfig
- ConfigDir
- TempDir
- GetRunData
- GetStatic
- IsDebug
- SetDebug
- GetDebugInfo
- GlobalVariables类
- 使用说明
- set
- get
- delete
- pull
- has
- id
- Mysql类
- 新版本
- 第三方
- Thinkorm
- Medoo
- 旧版本
- Mysql 配置格式
- 项目中操作数据库
- 项目场景
- 项目数据库配置
- 项目数据库中间类
- 项目中操作数据表
- 连贯操作
- where
- table
- data
- order
- field
- limit
- page
- group
- having
- join
- tabname
- union
- sql
- link
- link_base
- lock
- CURD 操作
- 写入数据
- 数据删除
- 数据查询
- 数据更新
- 数据统计操作
- count
- sum
- max
- min
- avg
- 操作DEMO
- CurdTrait.php
- 项目Model层操作表.md
- Curl类
- Method类
- SslAes类
- layui_zqadmin