聚合操作 count max min sum avg 聚合操作 count $this -> db ()-> table ( 'user' )-> count ( 'id' ); max $this -> db ()-> table ( 'user' )-> max ( 'id' ); min $this -...
属性操作 HTML 属性与 DOM 属性的对应 属性操作方式 Property Accessor getAttribute / setAttribute dataset Table of Contents generated with DocToc 属性操作 HTML 属性与 DOM 属性的对应 属性操作方式 Propert...
使用事务处理的话,需要数据库引擎支持事务处理。比如 MySQL 的 MyISAM 不支持事务处理,需要使用 InnoDB 引擎。 使用 transaction 方法操作数据库事务,当发生异常会自动回滚,例如: 自动控制事务处理 Db :: transaction ( function (){ Db :: name ( 'user' )-...