CData Python Connector for SAP Cloud for Customer

Build 24.0.9062

データの変更

"execute()" を呼び出してセッションで個別にコマンドを実行できます。

テーブルオブジェクトの取得

このメソッドに提供されるクエリは、マップされたクラスの関連するTable オブジェクトを使用して構築されます。このTable オブジェクトは、以下のように、マップされたクラスのメタデータフィールドから取得されます。

AccountCollection_table = AccountCollection.metadata.tables["AccountCollection"]

テーブルオブジェクトが取得されると、次の方法で書き込み操作が実行されます。クエリは"commit()" を呼び出すことなく即座に実行されます。

Insert

次の例では、テーブルに新しいレコードを追加します。

session.execute(AccountCollection_table.insert(), {"ObjectID": "Jon Doe", "AccountName": "John"})

Update

次の例では、テーブル内の既存のレコードを変更します。

session.execute(AccountCollection_table.update().where(AccountCollection_table.c.ObjectID == "'00000000-0000-0000-0000-000000000000'").values(ObjectID="Jon Doe", AccountName="John"))

Delete

次の例では、テーブルから既存のレコードを削除します。

session.execute(AccountCollection_table.delete().where(AccountCollection_table.c.ObjectID == "'00000000-0000-0000-0000-000000000000'"))

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 24.0.9062