TDV Adapter for Microsoft Dynamics 365 Business Central

Build 22.0.8462

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 { AccountId = <expression> } [ { AND | OR } ... ]

<expression> ::=
  | @ <parameter> 
  | ?
  | <literal>
You can use the executeUpdate method of the Statement or PreparedStatement classes to execute data manipulation commands and retrieve the number of affected rows, as shown in the following example:
Connection connection = DriverManager.getConnection("jdbc:d365businesscentral:InitiateOAuth=GETANDREFRESH;OrganizationUrl=https://api.businesscentral.dynamics.com/v1.0/api/v1.0",);
String cmd = "DELETE FROM Accounts WHERE AccountId = ?";
PreparedStatement pstmt = connection.prepareStatement(cmd);
pstmt.setString(1, "'00000000-0000-0000-0000-000000000000'");
int count=pstmt.executeUpdate();
connection.close();

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462