JDBC Driver for ServiceNow

Build 22.0.8479

DELETE ステートメント

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

DELETE 構文

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

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

<expression> ::=
  | @ <parameter> 
  | ?
  | <literal>
次の例に示すように、Statement またはPreparedStatement クラスのexecuteUpdate メソッドを使って、データ操作コマンドを実行し影響を受ける行数を取得できます。
Connection connection = DriverManager.getConnection("jdbc:servicenow:InitiateOAuth=GETANDREFRESH;OAuthClientId=MyClientId;OAuthClientSecret=MyClientSecret;User=MyUser;Password=MyPassword;Url=https://MyInstance12345.service-now.com/;",);
String cmd = "DELETE FROM incident WHERE sys_id = ?";
PreparedStatement pstmt = connection.prepareStatement(cmd);
pstmt.setString(1, "S");
int count=pstmt.executeUpdate();
connection.close();

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