//查询 |
$result = $guestbook ->find( $condition , $sort , $fields ); //条件查找,$sort排序方式,$fields指定字符串,后两个参数可以为空 |
$result = $guestbook ->findAll( $condition , $sort , $fields ); //全部查找 |
//添加内容 |
$guestbook ->create( $newrow ); |
// 更新记录 |
$guestbook ->update( $conditions_id , $new_content ); |
// 删除记录 |
$guestbook -> delete ( $conditions ); |