ChainedMonitor

实现 QueryMonitorInterface

允许执行多个监视器的链式查询监视器。

2.0.0

Joomla 框架

方法

addMonitor

向链中注册监视器。

addMonitor(\Joomla\Database\QueryMonitorInterface monitor) : 

2.0.0

参数

监视器

QueryMonitorInterface要添加的监视器。

响应

void

startQuery

对查询开始进行操作。

startQuery( sql, object[]|null boundParams = null) : 

2.0.0

参数

sql

string要执行的 SQL。

boundParams

array<string|int, object>|null与查询一起使用的绑定参数列表。每个项目都是一个对象,包含:value、dataType

响应

void

stopQuery

对查询停止进行操作。

stopQuery() : 

2.0.0

响应

void

属性

监视器

存储到此链的查询监视器

2.0.0

类型

array<string|int, QueryMonitorInterface>