Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 12.0.1 » UltraLite - .NET Programming » UltraLite.NET application development » Data creation and modification using the ULTable class

 

Deleting rows

The steps to delete a row are simpler than to insert or update rows. There is no delete mode corresponding to the insert or update modes.

The following procedure deletes a row.

 Delete a row
  1. Move to the row you want to delete.

  2. Execute the Table.Delete method.

    t.Delete();