JDBC Driver for Airtable

Build 22.0.8479

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:airtable:APIKey=keymz3adb53RqsU;BaseId=appxxN2fe34r3rjdG7;TableNames=TableA,TableB,TableC;ViewNames=TableA.ViewA,TableA.ViewB,..,TableX.ViewY;",);
String cmd = "DELETE FROM SampleTable_1 WHERE Id = ?";
PreparedStatement pstmt = connection.prepareStatement(cmd);
pstmt.setString(1, "6");
int count=pstmt.executeUpdate();
connection.close();

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