DELETE Statements
To delete information from a table, use DELETE statements.
DELETE Syntax
The DELETE statement requires the table name in the FROM clause and the row's primary key in the WHERE clause, as shown in the following example:
<delete_statement> ::= DELETE FROM <table_name> WHERE { _id = <expression> } [ { AND | OR } ... ]
<expression> ::=
| @ <parameter>
| ?
| <literal>
You can use the ExecuteNonQuery method to execute data manipulation commands and retrieve the number of affected rows, as shown in the following example:
C#
String connectionString = "Server=127.0.0.1;User=admin;Password=1234;Port=9925;"; using (HarperDBConnection connection = new HarperDBConnection(connectionString)) { int rowsAffected; HarperDBCommand cmd = new HarperDBCommand("DELETE FROM [HarperDB].[cstest].Cutomers WHERE _id = @my_id", connection); cmd.Parameters.Add(new HarperDBParameter("my_id","22")); rowsAffected = cmd.ExecuteNonQuery(); }
VB.NET
Dim connectionString As [String] = "Server=127.0.0.1;User=admin;Password=1234;Port=9925;" Using connection As New HarperDBConnection(connectionString) Dim rowsAffected As Integer Dim cmd As New HarperDBCommand("DELETE FROM [HarperDB].[cstest].Cutomers WHERE _id = @my_id", connection) cmd.Parameters.Add(New HarperDBParameter("my_id", "22")) rowsAffected = cmd.ExecuteNonQuery() End Using