カラム
特定のテーブルで利用可能なカラムは、"sys_tablecolumns"と呼ばれるシステムテーブルからフェッチされます。
WHERE 条件で特定のテーブル名を指定すると、カラム情報をフェッチするテーブルを制限することができます。
import cdata.raiseredgenxt as mod conn = mod.connect("InitiateOAuth=GETANDREFRESH;SubscriptionKey=MySubscriptionKey;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;CallbackURL=http://localhost:33333;") cur = conn.cursor() cmd = "SELECT * FROM sys_tablecolumns WHERE TableName = 'Constituents'" cur.execute(cmd) rs = cur.fetchall() for row in rs: print(row)