CData Python Connector for BigCommerce

Build 23.0.8839

データのクエリ

接続 の手順を使用して接続し、メタデータの反映 メソッドのいずれかを使用してメタデータの一部を反映させたら、セッションオブジェクトを使用してデータをクエリできます。

query メソッドを使用したデータのクエリ

マッピングクラスが用意されている場合は、セッションオブジェクトと併用してデータソースをクエリします。エンジンをセッションにバインドしたら、マッピングクラスをセッションのクエリメソッドに提供します。

次に例を示します。

engine = create_engine("bigcommerce:///?AuthScheme=OAuth;InitiateOAuth=GETANDREFRESH;OAuthClientId=YourClientId;OAuthClientSecret=YourClientSecret;StoreId='YoUrSToREId';CallbackURL='http://localhost:33333'")
factory = sessionmaker(bind=engine)
session = factory()
for instance in session.query(Customers).filter_by(Column2="Bob"):
	print("Id: ", instance.Id)
	print("FirstName: ", instance.FirstName)
	print("LastName: ", instance.LastName)
	print("---------")

execute メソッドを使用したデータのクエリ

セッションオブジェクトは、適切なテーブルオブジェクトと一緒にexecute() メソッドを使用してクエリを実行することもできます。アクティブなセッションがあると仮定すると、以下は同様に実行可能です。
Customers_table = Customers.metadata.tables["Customers"]
for instance in session.execute(Customers_table.select().where(Customers_table.c.Column2 == "Bob")):
	print("Id: ", instance.Id)
	print("FullName: ", instance.Name)
	print("City: ", instance.BillingCity)
	print("---------")

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