Class Delete

Summary

Fully Qualified Name: Zend\Db\Sql\Delete
Extends: AbstractPreparableSql

Description

Methods

Name Description Defined By
__construct() Constructor Delete
__get() Property overloading Delete
from() Create from statement Delete
getRawState() Delete
getSqlString() {@inheritDoc} AbstractSql
prepareStatement() {@inheritDoc} AbstractPreparableSql
where() Create where clause Delete

Method Details

__construct()

Constructor

Parameter Name Type Description
$table null|string|\TableIdentifier

Returns:

__get()

Property overloading

Overloads "where" only.

Parameter Name Type Description
$name string

Returns: \Where|null

from()

Create from statement

Parameter Name Type Description
$table string|\TableIdentifier

Returns: self Provides a fluent interface

getRawState()

Parameter Name Type Description
$key null

Returns: mixed

getSqlString()

{@inheritDoc}

Parameter Name Type Description
$adapterPlatform

Returns:

prepareStatement()

{@inheritDoc}

Parameter Name Type Description
$adapter
$statementContainer

Returns: \StatementContainerInterface

where()

Create where clause

Parameter Name Type Description
$predicate \Where|\Closure|string|array
$combination string One

Returns: self Provides a fluent interface

Top