データのクエリ
接続 の手順を使用して接続し、メタデータの反映 メソッドのいずれかを使用してメタデータの一部を反映させたら、セッションオブジェクトを使用してデータをクエリできます。
query メソッドを使用したデータのクエリ
マッピングクラスが用意されている場合は、セッションオブジェクトと併用してデータソースをクエリします。エンジンをセッションにバインドしたら、マッピングクラスをセッションのクエリメソッドに提供します。次に例を示します。
engine = create_engine("surveymonkey:///?InitiateOAuth=GETANDREFRESH;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;CallbackURL=http://localhost:portNumber;") factory = sessionmaker(bind=engine) session = factory() for instance in session.query(MySurvey_Responses).filter_by(ChoiceText="blue"): print("Id: ", instance.Id) print("RespondentId: ", instance.RespondentId) print("ChoiceId: ", instance.ChoiceId) print("---------")
execute メソッドを使用したデータのクエリ
セッションオブジェクトは、適切なテーブルオブジェクトと一緒にexecute() メソッドを使用してクエリを実行することもできます。アクティブなセッションがあると仮定すると、以下は同様に実行可能です。MySurvey_Responses_table = MySurvey_Responses.metadata.tables["MySurvey_Responses"] for instance in session.execute(MySurvey_Responses_table.select().where(MySurvey_Responses_table.c.ChoiceText == "blue")): print("Id: ", instance.Id) print("FullName: ", instance.Name) print("City: ", instance.BillingCity) print("---------")