optiwariindia/database
Composer 安装命令:
composer require optiwariindia/database
包简介
A library to connect database and use basic activities in database like create,select,insert,update,delete and drop using predefined methods
README 文档
README
Supported Databases:
- MariaDB
- MySQL
Getting Started
Installation
composer require optiwariindia/database
Geting Started
Prerequsites:
- Database Hostname, generally localhost if database is installed on webserver.
- Database Username, usually root for local installations
- Database Password, usually blank for local installations
- Database Name, Generally same as hosting account name
create object of database class
use optiwariindia\database
$db=new database([ "host"=>"localhost", "user"=>"root", //Your Database user "pass"=>"", // Your database password "name"=>"{Database Name}" //Your Database Name ])
Basic Operations
Insert
Create an array of the data you want to store in database, set keys as name of fields for example Table auth, contains username and password only, then it shall be written like :
$data=[
"user"=>{Username},
"pass"=>{Password}
];
And then it can be inserted into auth table like:
$db->insert("auth",$data);
Select
The database class is providing 4 modes for selecting data as follows:
- mode 0 returns array with following keys:
- fields: Array showing list of fields
- rows: number of rows
- touples with numeric indicies i.e. $data[0] shows first row.
- mode 1 returns rows as array containing filed names as key for each row.
- mode 2 returns id as row index and each row as collection of fields where field names are keys
- mode 3 returns same as mode 1 but parses all json arrays and eliminates all blobs.
By default mode 0 is selected in the object. To change mode you can use following:
$db->mode({mode number})To select Data from any table you can use following:$data= $db->select({table name},{filelds (optional, * by default)},{clauses})
Update
The update function can be used to update data in a table. to update data create an array with filedname as keys like:
$data=[
"{field to be updated}"=>"{filed value}"
];
and then
$db->update({table name},$data,{clause if any (Optional)});
Delete
$db->delete({tablename},{clause if any (optional)});
optiwariindia/database 适用场景与选型建议
optiwariindia/database 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 290 次下载、GitHub Stars 达 1, 最近一次更新时间为 2019 年 04 月 05 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 optiwariindia/database 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 optiwariindia/database 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 290
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-04-05