Download the PHP package jhq0113/roach-orm without Composer

On this page you can find all versions of the php package jhq0113/roach-orm. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package roach-orm

roach-orm

roach-orm是一个简单高性能的PHP语言ORM框架,支持数据库的负载均衡预防SQL注入故障自动摘除自动恢复以及读写分离等强大功能,整个代码文件不到20K

我的官方网站

https://404.360tryst.com/

安装方式

1.使用Model

1.1 配置db

通过composer下载完本依赖后,在您的项目中加载composer依赖(一般在您的项目入口文件中requirevendor/autoload.php即可),如果已经加载忽略此步骤。

在使用Model前需要将db组件注册到roach\Container中,配置是数组格式,可以放到配置文件中,注册方式如下

1.2 使用Model进行CRUD

假入您的数据库中有如下表

创建UserModel类,使之继承roach\orm\Model,如下

插入单条数据

插入多条数据

where条件可以是数组,也可以是字符串,当where条件为数组时,多个条件之间是AND关系,alloneupdateAlldeleteAll等方法中的where条件的表达式解析是一致的

相等查询

IN查询

BETWEEN查询

范围查询(>, >=, <, <=, ><, !=)

LIKE查询

多条件查询

GROUP BY查询

ORDER BY查询

分页查询

不支持跨库事务

普通方式

闭包方式

2.读写分离

读操作

写操作

3.切库

如果我们的项目使用的不是一个数据库集群,这样我们的项目就需要跨集群访问数据库,可以通过如下方式实现

Model类中

这样我们就完成切库,当我们使用TradeModel访问数据库是自动调用的是tradeDb集群的数据库

4. 事件处理

roach-orm支持四种事件

事件名称 常量 触发机制
db:connect:exception roach\orm\Connection::EVENT_EXCEPTION_CONNECT 在连接数据时,某个节点连接异常,此事件不会抛出异常,只有当所有连接都连接不上才会抛出异常
db:query:before roach\orm\Connection::EVENT_BEFORE_QUERY 执行sql之前触发
db:query:after roach\orm\Connection::EVENT_AFTER_QUERY 执行sql之后触发
db:connect:lost roach\orm\Connection::EVENT_EXCEPTION_CONNECT_LOST 在执行sql时,连接断了,此事件不会抛出异常,只有当所有连接都连接不上才会抛出异常

我们可以在向Container中注册数据库组件时监听这些事件,等事件触发时做相应的处理即可,绑定事件的方式有两种,第一种是注入方法方式绑定。

第二种是手动绑定事件

我的主页

公众号


All versions of roach-orm with dependencies

PHP Build Version
Package Version
Requires jhq0113/roach Version ^1.0
ext-pdo Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package jhq0113/roach-orm contains the following files

Loading the files please wait ....