Show:

Exposes API's to delete tuples from table.

Methods

and

(
  • column
)
IDeleteClause

Used to specify AND condition between where clause.

Parameters:

  • column String

    Name of column on which condition need to be specified.

Returns:

IDeleteClause:

IDeleteClause Interface.

execute

()

Used to delete, this method should be called in last to delete tuples from table.

executeAsync

(
  • callback
)

Used to delete asynchronous, this method should be called in last to delete tuples from table.

Parameters:

  • callback Callback

    Request Callback

or

(
  • column
)
IDeleteClause

Used to specify OR condition between where clause.

Parameters:

  • column String

    Name of column on which condition need to be specified.

Returns:

IDeleteClause:

IDeleteClause Interface.

where

(
  • column
)
IDeleteClause

Column name of which condition will be specified.

Parameters:

  • column String

    Name of column.

Returns:

IDeleteClause:

IDeleteClause Interface.

whereClause

(
  • whereClause
)
IDelete

Used to provide manually created Where clause, instead of using API's.

Parameters:

  • whereClause String

    Manually created where clause.

Returns:

IDelete:

IDelete Interface.