DeleteStatement<T extends Table, D> constructor

DeleteStatement<T extends Table, D>(
  1. DatabaseConnectionUser database,
  2. TableInfo<T, D> table
)

This constructor should be called by DatabaseConnectionUser.delete for you.

Implementation

DeleteStatement(DatabaseConnectionUser database, TableInfo<T, D> table)
    : super(database, table);