JDBC Driver for QuickBooks Online

Build 22.0.8678

DELETE ステートメント

テーブルから情報を削除するには、DELETE ステートメントを使用します。

DELETE 構文

DELETE ステートメントには、次の例に示すように、FROM 句のテーブル名とWHERE 句の行の主キーが必要です。

<delete_statement> ::= DELETE FROM <table_name> WHERE { Id = <expression> } [ { AND | OR } ... ]

<expression> ::=
  | @ <parameter> 
  | ?
  | <literal>
次の例に示すように、Statement またはPreparedStatement クラスのexecuteUpdate メソッドを使って、データ操作コマンドを実行し影響を受ける行数を取得できます。
Connection connection = DriverManager.getConnection("jdbc:quickbooksonline:InitiateOAuth=GETANDREFRESH;",);
String cmd = "DELETE FROM Customers WHERE Id = ?";
PreparedStatement pstmt = connection.prepareStatement(cmd);
pstmt.setString(1, "1");
int count=pstmt.executeUpdate();
connection.close();

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