CData Cloud は、クラウドホスト型のソリューションで、複数の標準サービスやプロトコルにまたがるMicrosoft Office 365 へのアクセスを実現します。MySQL またはSQL Server データベースに接続できるアプリケーションであれば、CData Cloud を介してMicrosoft Office 365 に接続できます。
CData Cloud により、他のOData エンドポイントや標準SQL Server / MySQL データベースと同じように、Microsoft Office 365 への接続を標準化し、構成することができます。
このページでは、CData Cloud でのMicrosoft Office 365 への接続の確立 のガイド、利用可能なリソースに関する情報、および使用可能な接続プロパティのリファレンスについて説明します。
接続の確立 は、CData Cloud にデータベースを作成するためのMicrosoft Office 365 への認証方法と必要な接続プロパティの設定方法について示します。
利用可能な標準サービスを経由してMicrosoft Office 365 からデータにアクセスする方法と、CData Cloud の管理については、CData Cloud ドキュメント で詳しく説明します。
Database タブで対応するアイコンを選択して、Microsoft Office 365 に接続します。必須プロパティはSettings にリストされています。Advanced タブには、通常は必要ない接続プロパティが表示されます。
Microsoft Office 365 はOAuth 認証標準を利用しています。OAuth を使って認証するには、アプリケーションを作成してOAuthClientId、OAuthClientSecret、およびCallbackURL 接続プロパティを取得する必要があります。
Web アプリケーションを介したAzure AD への認証には、 常にカスタムOAuth アプリケーションの作成が必要です。
カスタムOAuthアプリケーションの作成の詳細については、Azure AD アプリケーションの作成 を参照してください。
Azure サービスプリンシパルは、ロールに基づいたアプリケーションベースの認証です。これは、認証がユーザーごとではなく、アプリケーションごとに行われることを意味します。 アプリケーションで実行されるすべてのタスクは、デフォルトユーザーコンテキストなしで、割り当てられたロールに基づいて実行されます。 リソースへのアプリケーションのアクセスは、割り当てられたロールの権限によって制御されます。
Azure サービスプリンシパル認証の設定方法については、サービスプリンシパルによるAzure AD アプリの作成 を参照してください。
Azure VM 上でMicrosoft Office 365 を実行しており、マネージドID(MSI)認証情報を自動的に取得して接続したい場合は、AuthScheme を AzureMSI に設定します。
VM に複数のユーザーが割り当てられたマネージドID がある場合は、OAuthClientId も指定する必要があります。
CData Cloud を使用して、管理タスクを実行できます。これは、CUD 操作を実行するためにUserId カラムを指定することで行います。
多くのテーブルは特別なUserId カラムを公開しています。これは、管理者が他のユーザーアカウントのレコードを変更するために使用するようにデザインされています。
自分が管理者ではない場合、またはこの動作を望まない場合は、INSERT / UPDATE / DELETE 操作を実行するときにUserId を指定しないでください。
例えば、次のコマンドを実行すると、他のユーザーの連絡先が挿入されます。
INSERT INTO Contacts (displayName, CompanyName, UserId) VALUES ('Bill', 'Bob Co', '12345')
上記のリクエストは、/users/12345/contacts のリソースの下に連絡先を追加しようとする全体的な効果があります。UserId が指定されていない場合、 影響を受けるリソースは代わりに/users/me/contacts の下に変更されます。一般的に、管理者でない場合は/users/me 下のレコードにしか影響を与えたり 表示したりできないので、管理者でない場合はUserId を設定することはお勧めできません。
デフォルトでは、Cloud はサーバーとのTLS のネゴシエーションを試みます。サーバー証明書は、デフォルトのシステム信頼済み証明書ストアで検証されます。SSLServerCert 接続プロパティを使用して、証明書の検証方法をオーバーライドできます。
別の証明書を指定するには、SSLServerCert 接続プロパティを参照してください。
HTTP プロキシへの認証には、以下のように設定します。
次のプロパティを設定します。
Cloud はMicrosoft Office 365 API をリレーショナルテーブルとしてモデル化します。リモートデータへのあらゆる変更はクエリに即時に反映されます。テーブル定義は動的に取得されます。接続すると、Cloud はMicrosoft Office 365 に接続し、適切なWeb サービスを呼び出してテーブルのリストとテーブルのメタデータを取得します。
このセクションでは、API の制限および要件について説明します。既定のSupportEnhancedSQL 機能を使って、これらの制限の大半を回避できます。
テーブル は、サンプルOffice 365 サイトの定義を示します。実際のデータモデルは、ユーザー資格情報とOffice 365サイトに基づいて動的に取得されます。
ストアドプロシージャ は、Office 365のファンクションライクなインターフェースです。これらを使用して、Office365内の情報を検索、更新、および変更できます。
Cloud はMicrosoft Office 365 のデータを、標準のSQL ステートメントを使用してクエリできるリレーショナルデータベースのテーブルのリストとしてモデル化します。
| Name | Description |
| Calendars | This table is dynamic and maps to the corresponding field in the API. |
| Contacts | The Office365 table Contacts. |
| Conversations | The Office365 table Conversations. |
| Events | This field is dynamic and maps to the corresponding field in the API. |
| Files | The Office365 table Files. |
| Groups | The Office365 table Groups. |
| Messages | The Office365 table Messages. |
| Tasks | The Office365 table Tasks. |
| Users | Read, Insert, Update and Delete a User. |
This table is dynamic and maps to the corresponding field in the API.
You can query Calendars by specifying an Id or selecting all:
SELECT * FROM Calendars WHERE Id = 'your Calendar Id goes here'
Select a certain column from the entity and filter by that column:
SELECT id FROM Calendars WHERE name LIKE 'Calendar%'
Specify a Name as a minimum in order to create a new Calendar:
INSERT INTO Calendars (Name) VALUES ('John')
Note: In case of client credentials, UserId is required in order to create a new Calendar:
INSERT INTO Calendars (Name, UserId) VALUES ('Test123', '92dfdfc6-f1d4-4965-9f71-30e4da4fa7fe');
| Name | Type | ReadOnly | References | Description |
| id [KEY] | String | True |
This field is dynamic and maps to the corresponding field in the API. | |
| Etag | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| allowedOnlineMeetingProviders | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| canEdit | Bool | False |
This field is dynamic and maps to the corresponding field in the API. | |
| canShare | Bool | False |
This field is dynamic and maps to the corresponding field in the API. | |
| canViewPrivateItems | Bool | False |
This field is dynamic and maps to the corresponding field in the API. | |
| changeKey | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| color | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| defaultOnlineMeetingProvider | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| hexColor | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| isDefaultCalendar | Bool | False |
This field is dynamic and maps to the corresponding field in the API. | |
| isRemovable | Bool | False |
This field is dynamic and maps to the corresponding field in the API. | |
| isTallyingResponses | Bool | False |
This field is dynamic and maps to the corresponding field in the API. | |
| name | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| owner_address | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| owner_name | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| UserId [KEY] | String | False |
The UserId column for the table Calendars. |
The Office365 table Contacts.
Id を指定するかすべてを選択することで、Contacts をクエリできます。
SELECT * FROM Contacts WHERE Id = 'your Contact Id goes here'
エンティティから特定のカラムを選択して、そのカラムでフィルタします。
SELECT GivenName FROM Contacts WHERE GivenName LIKE 'John%'
新しいContact を作成するには、GivenName とSurname を最低限に指定します。
INSERT INTO Contacts (GivenName, Surname) VALUES ('John', 'Smith')
Note: In case of client credentials, UserId is required in order to create a new Contact:
INSERT INTO Contacts (GivenName, Surname, UserId) VALUES ('John', 'Smith', '92dfdfc6-f1d4-4965-9f71-30e4da4fa7fe')
| Name | Type | ReadOnly | References | Description |
| id [KEY] | String | True |
The contact's unique identifier. | |
| Etag | String | False | ||
| categories | String | False |
The categories associated with the contact. | |
| changeKey | String | False |
Identifies the version of the contact. This changes every time the contact is changed. | |
| createdDateTime | Datetime | False |
The time the contact was created. | |
| lastModifiedDateTime | Datetime | False |
The time the contact was last modified. | |
| assistantName | String | False |
The name of the contact's assistant. | |
| birthday | Datetime | False |
The contact's birthday. | |
| businessAddress_city | String | False |
The city of the contact's business address. | |
| businessAddress_countryOrRegion | String | False |
The country or region of the contact's business address. | |
| businessAddress_postalCode | String | False |
The postal code of the contact's business address. | |
| businessAddress_state | String | False |
The state of the contact's business address. | |
| businessAddress_street | String | False |
The street of the contact's business address. | |
| businessHomePage | String | False |
The business home page of the contact. | |
| businessPhones | String | False |
The contact's business phone numbers. | |
| children | String | False |
The names of the contact's children. | |
| companyName | String | False |
The name of the contact's company. | |
| department | String | False |
The department of the contact. | |
| displayName | String | False |
The contact's display name. | |
| emailAddresses | String | False |
A collection of email address associated with the contact. | |
| fileAs | String | False |
The name the contact is filed under. | |
| generation | String | False |
The generation of the contact. | |
| givenName | String | False |
The given name of the contact. | |
| homeAddress_city | String | False |
The city of the contact's home address. | |
| homeAddress_countryOrRegion | String | False |
The country or region of the contact's home address. | |
| homeAddress_postalCode | String | False |
The postal code of the contact's home address. | |
| homeAddress_state | String | False |
The state of the contact's home address. | |
| homeAddress_street | String | False |
The street of the contact's home address. | |
| homePhones | String | False |
The contact's home phone numbers | |
| imAddresses | String | False |
The contact's instant messaging (IM) address. | |
| initials | String | False |
The initials of the contact. | |
| jobTitle | String | False |
The contact's job title. | |
| manager | String | False |
The name of the contact's manager. | |
| middleName | String | False |
The contact's middle name. | |
| mobilePhone | String | False |
The mobile phone number of the contact. | |
| nickName | String | False |
The contact's nickname. | |
| officeLocation | String | False |
The location of the contact's address. | |
| otherAddress_city | String | False |
The city of the customer's other address. | |
| otherAddress_countryOrRegion | String | False |
The country or region of the customer's other address. | |
| otherAddress_postalCode | String | False |
The postal code of the customer's other address | |
| otherAddress_state | String | False |
The state of the customer's other address. | |
| otherAddress_street | String | False |
The street of the customer's other address. | |
| parentFolderId | String | False |
The ID of the contact's parent folder. | |
| personalNotes | String | False |
The user's notes about the contact. | |
| profession | String | False |
The contact's profession. | |
| spouseName | String | False |
The name of the contact's spouse/partner. | |
| surname | String | False |
The contact's surname. | |
| title | String | False |
The contact's title. | |
| yomiCompanyName | String | False |
The phonetic Japanese company name of the contact. | |
| yomiGivenName | String | False |
The phonetic Japanese given name (first name) of the contact. | |
| yomiSurname | String | False |
The phonetic Japanese surname (last name) of the contact. | |
| UserId [KEY] | String | False |
The contact's user ID. |
The Office365 table Conversations.
グループConversations を取得するには、GroupId が必要です
SELECT * FROM Conversations WHERE GroupId = 'your GroupId goes here'
また、GroupId とConversation Id を使ってグループConversations を取得することもできます。
SELECT * FROM Conversations WHERE Id = 'conversation Id here' AND GroupId = 'your GroupId goes here'
新しいConversation を作成するには、GroupId、Topic、Content、およびNewParticipants を指定します。NewParticipants は複合型です。フォーマットは次のとおりです:'name1, email1; name2, email2'。
INSERT INTO Conversations (GroupId, Topic, Content, NewParticipants) VALUES ('GroupId here', 'This is a test topic.', 'Hi, How Are you?', 'someone, [email protected]')
| Name | Type | ReadOnly | References | Description |
| id [KEY] | String | True |
The id column for the table Conversations. | |
| Etag | String | False | ||
| hasAttachments | Bool | False |
The hasAttachments column for the table Conversations. | |
| lastDeliveredDateTime | Datetime | False |
The lastDeliveredDateTime column for the table Conversations. | |
| preview | String | False |
The preview column for the table Conversations. | |
| topic | String | False |
The topic column for the table Conversations. | |
| uniqueSenders | String | False |
The uniqueSenders column for the table Conversations. | |
| GroupId [KEY] | String | False |
The GroupId column for the table Conversations. | |
| Content | String | False |
The Content column for the table Conversations. | |
| NewParticipants | String | False |
The NewParticipants column for the table Conversations. |
This field is dynamic and maps to the corresponding field in the API.
イベントを返すにはデフォルトで'me' プロパティが使用されます。
Events を検索するときにWHERE 句のUserId を使用してこれをオーバーライドできます。
SELECT * FROM Events WHERE UserId = 'abc123' AND Subject LIKE '%test%'
GroupId にはカレンダータイプのId またはグループId を指定できます。例:
SELECT * FROM Events WHERE GroupId = 'enter your group Id here'
新しいイベントを作成するには、タイムゾーンを含むstart とend が必須です。
INSERT INTO Events (Subject, Body_Content, Start_DateTime, Start_TimeZone, End_DateTime, End_TimeZone) VALUES ('New Test Event', 'Event created using Office365Provider', '2016-01-01T10:00:00', 'UTC', '2016-01-01T11:00:00', 'UTC')
Note:デフォルトで、このステートメントはイベントをデフォルトカレンダー内に作成します。
Note: In case of client credentials, UserId is required in order to create a new Event:
INSERT INTO Events (Subject, Body_Content, Start_DateTime, Start_TimeZone, End_DateTime, End_TimeZone, UserId) VALUES ('New Test Event', 'Event created using Office365Provider', '2016-01-01T10:00:00', 'UTC', '2016-01-01T11:00:00', 'UTC', '92dfdfc6-f1d4-4965-9f71-30e4da4fa7fe')
| Name | Type | ReadOnly | References | Description |
| id [KEY] | String | True |
This field is dynamic and maps to the corresponding field in the API. | |
| Etag | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| categories | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| changeKey | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| createdDateTime | Datetime | False |
This field is dynamic and maps to the corresponding field in the API. | |
| lastModifiedDateTime | Datetime | False |
This field is dynamic and maps to the corresponding field in the API. | |
| allowNewTimeProposals | Bool | False |
This field is dynamic and maps to the corresponding field in the API. | |
| attendees | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| body_content | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| body_contentType | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| bodyPreview | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| end_dateTime | Datetime | False |
This field is dynamic and maps to the corresponding field in the API. | |
| end_timeZone | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| hasAttachments | Bool | False |
This field is dynamic and maps to the corresponding field in the API. | |
| hideAttendees | Bool | False |
This field is dynamic and maps to the corresponding field in the API. | |
| iCalUId | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| importance | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| isAllDay | Bool | False |
This field is dynamic and maps to the corresponding field in the API. | |
| isCancelled | Bool | False |
This field is dynamic and maps to the corresponding field in the API. | |
| isDraft | Bool | False |
This field is dynamic and maps to the corresponding field in the API. | |
| isOnlineMeeting | Bool | False |
This field is dynamic and maps to the corresponding field in the API. | |
| isOrganizer | Bool | False |
This field is dynamic and maps to the corresponding field in the API. | |
| isReminderOn | Bool | False |
This field is dynamic and maps to the corresponding field in the API. | |
| location_address_city | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| location_address_countryOrRegion | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| location_address_postalCode | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| location_address_state | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| location_address_street | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| location_coordinates_accuracy | Double | False |
This field is dynamic and maps to the corresponding field in the API. | |
| location_coordinates_altitude | Double | False |
This field is dynamic and maps to the corresponding field in the API. | |
| location_coordinates_altitudeAccuracy | Double | False |
This field is dynamic and maps to the corresponding field in the API. | |
| location_coordinates_latitude | Double | False |
This field is dynamic and maps to the corresponding field in the API. | |
| location_coordinates_longitude | Double | False |
This field is dynamic and maps to the corresponding field in the API. | |
| location_displayName | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| location_locationEmailAddress | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| location_locationType | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| location_locationUri | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| location_uniqueId | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| location_uniqueIdType | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| locations | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| onlineMeeting_conferenceId | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| onlineMeeting_joinUrl | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| onlineMeeting_phones | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| onlineMeeting_quickDial | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| onlineMeeting_tollFreeNumbers | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| onlineMeeting_tollNumber | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| onlineMeetingProvider | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| onlineMeetingUrl | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| organizer_emailAddress_address | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| organizer_emailAddress_name | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| originalEndTimeZone | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| originalStart | Datetime | False |
This field is dynamic and maps to the corresponding field in the API. | |
| originalStartTimeZone | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| recurrence_pattern_dayOfMonth | Int | False |
This field is dynamic and maps to the corresponding field in the API. | |
| recurrence_pattern_daysOfWeek | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| recurrence_pattern_firstDayOfWeek | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| recurrence_pattern_index | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| recurrence_pattern_interval | Int | False |
This field is dynamic and maps to the corresponding field in the API. | |
| recurrence_pattern_month | Int | False |
This field is dynamic and maps to the corresponding field in the API. | |
| recurrence_pattern_type | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| recurrence_range_endDate | Datetime | False |
This field is dynamic and maps to the corresponding field in the API. | |
| recurrence_range_numberOfOccurrences | Int | False |
This field is dynamic and maps to the corresponding field in the API. | |
| recurrence_range_recurrenceTimeZone | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| recurrence_range_startDate | Datetime | False |
This field is dynamic and maps to the corresponding field in the API. | |
| recurrence_range_type | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| reminderMinutesBeforeStart | Int | False |
This field is dynamic and maps to the corresponding field in the API. | |
| responseRequested | Bool | False |
This field is dynamic and maps to the corresponding field in the API. | |
| responseStatus_response | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| responseStatus_time | Datetime | False |
This field is dynamic and maps to the corresponding field in the API. | |
| sensitivity | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| seriesMasterId | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| showAs | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| start_dateTime | Datetime | False |
This field is dynamic and maps to the corresponding field in the API. | |
| start_timeZone | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| subject | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| transactionId | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| type | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| webLink | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| UserId | String | False |
This field is dynamic and maps to the corresponding field in the API. | |
| GroupId | String | False |
This field is dynamic and maps to the corresponding field in the API. |
The Office365 table Files.
例えばUserId やFile Id (Id) を使ってファイルを取得したり、単純に特定のカラムでフィルタしたりします。
SELECT * FROM Files WHERE UserId = 'MyUserId' SELECT Name, LastModifiedDateTime FROM Files WHERE Name LIKE 'test%'
フォルダレベルのファイルに対応するには、クエリでparentReference_path を指定する必要があります。
SELECT * FROM files WHERE parentReference_path = '/drives/b!3LIvU2zISEqicGlWkgVknKxKT-q7gM5IqlBJ4w4MZqaX6BQc_vtwQpnqaldXkH9I/root:/Test_Shubham';
INSERT 操作は、このテーブルではサポートされていません。
Note:ファイルの内容を挿入および更新するには、UploadFile を(フォルダを作成するにはCreateFolder を)参照してください。
| Name | Type | ReadOnly | References | Description |
| id [KEY] | String | True |
The id column for the table Files. | |
| Etag | String | False |
The Etag column for the table Files. | |
| createdBy_application_displayName | String | False |
The createdBy_application_displayName column for the table Files. | |
| createdBy_application_id | String | False |
The createdBy_application_id column for the table Files. | |
| createdDateTime | Datetime | False |
The createdDateTime column for the table Files. | |
| description | String | False |
The description column for the table Files. | |
| lastModifiedBy_application_displayName | String | False |
The lastModifiedBy_application_displayName column for the table Files. | |
| lastModifiedBy_application_id | String | False |
The lastModifiedBy_application_id column for the table Files. | |
| lastModifiedDateTime | Datetime | False |
The lastModifiedDateTime column for the table Files. | |
| name | String | False |
The name column for the table Files. | |
| parentReference_driveId | String | False |
The parentReference_driveId column for the table Files. | |
| parentReference_driveType | String | False |
The parentReference_driveType column for the table Files. | |
| parentReference_id | String | False |
The parentReference_id column for the table Files. | |
| parentReference_name | String | False |
The parentReference_name column for the table Files. | |
| parentReference_path | String | False |
The parentReference_path column for the table Files. | |
| parentReference_shareId | String | False |
The parentReference_shareId column for the table Files. | |
| parentReference_sharepointIds_listId | String | False |
The parentReference_sharepointIds_listId column for the table Files. | |
| parentReference_sharepointIds_listItemId | String | False |
The parentReference_sharepointIds_listItemId column for the table Files. | |
| parentReference_sharepointIds_listItemUniqueId | String | False |
The parentReference_sharepointIds_listItemUniqueId column for the table Files. | |
| parentReference_sharepointIds_siteId | String | False |
The parentReference_sharepointIds_siteId column for the table Files. | |
| parentReference_sharepointIds_siteUrl | String | False |
The parentReference_sharepointIds_siteUrl column for the table Files. | |
| parentReference_sharepointIds_tenantId | String | False |
The parentReference_sharepointIds_tenantId column for the table Files. | |
| parentReference_sharepointIds_webId | String | False |
The parentReference_sharepointIds_webId column for the table Files. | |
| parentReference_siteId | String | False |
The parentReference_siteId column for the table Files. | |
| webUrl | String | False |
The webUrl column for the table Files. | |
| audio_album | String | False |
The audio_album column for the table Files. | |
| audio_albumArtist | String | False |
The audio_albumArtist column for the table Files. | |
| audio_artist | String | False |
The audio_artist column for the table Files. | |
| audio_bitrate | Long | False |
The audio_bitrate column for the table Files. | |
| audio_composers | String | False |
The audio_composers column for the table Files. | |
| audio_copyright | String | False |
The audio_copyright column for the table Files. | |
| audio_disc | Int | False |
The audio_disc column for the table Files. | |
| audio_discCount | Int | False |
The audio_discCount column for the table Files. | |
| audio_duration | Long | False |
The audio_duration column for the table Files. | |
| audio_genre | String | False |
The audio_genre column for the table Files. | |
| audio_hasDrm | Bool | False |
The audio_hasDrm column for the table Files. | |
| audio_isVariableBitrate | Bool | False |
The audio_isVariableBitrate column for the table Files. | |
| audio_title | String | False |
The audio_title column for the table Files. | |
| audio_track | Int | False |
The audio_track column for the table Files. | |
| audio_trackCount | Int | False |
The audio_trackCount column for the table Files. | |
| audio_year | Int | False |
The audio_year column for the table Files. | |
| content | String | False |
The content column for the table Files. | |
| cTag | String | False |
The cTag column for the table Files. | |
| deleted_state | String | False |
The deleted_state column for the table Files. | |
| file_hashes_crc32Hash | String | False |
The file_hashes_crc32Hash column for the table Files. | |
| file_hashes_quickXorHash | String | False |
The file_hashes_quickXorHash column for the table Files. | |
| file_hashes_sha1Hash | String | False |
The file_hashes_sha1Hash column for the table Files. | |
| file_hashes_sha256Hash | String | False |
The file_hashes_sha256Hash column for the table Files. | |
| file_mimeType | String | False |
The file_mimeType column for the table Files. | |
| file_processingMetadata | Bool | False |
The file_processingMetadata column for the table Files. | |
| fileSystemInfo_createdDateTime | Datetime | False |
The fileSystemInfo_createdDateTime column for the table Files. | |
| fileSystemInfo_lastAccessedDateTime | Datetime | False |
The fileSystemInfo_lastAccessedDateTime column for the table Files. | |
| fileSystemInfo_lastModifiedDateTime | Datetime | False |
The fileSystemInfo_lastModifiedDateTime column for the table Files. | |
| folder_childCount | Int | False |
The folder_childCount column for the table Files. | |
| folder_view_sortBy | String | False |
The folder_view_sortBy column for the table Files. | |
| folder_view_sortOrder | String | False |
The folder_view_sortOrder column for the table Files. | |
| folder_view_viewType | String | False |
The folder_view_viewType column for the table Files. | |
| image_height | Int | False |
The image_height column for the table Files. | |
| image_width | Int | False |
The image_width column for the table Files. | |
| location_altitude | Double | False |
The location_altitude column for the table Files. | |
| location_latitude | Double | False |
The location_latitude column for the table Files. | |
| location_longitude | Double | False |
The location_longitude column for the table Files. | |
| package_type | String | False |
The package_type column for the table Files. | |
| pendingOperations_pendingContentUpdate_queuedDateTime | Datetime | False |
The pendingOperations_pendingContentUpdate_queuedDateTime column for the table Files. | |
| photo_cameraMake | String | False |
The photo_cameraMake column for the table Files. | |
| photo_cameraModel | String | False |
The photo_cameraModel column for the table Files. | |
| photo_exposureDenominator | Double | False |
The photo_exposureDenominator column for the table Files. | |
| photo_exposureNumerator | Double | False |
The photo_exposureNumerator column for the table Files. | |
| photo_fNumber | Double | False |
The photo_fNumber column for the table Files. | |
| photo_focalLength | Double | False |
The photo_focalLength column for the table Files. | |
| photo_iso | Int | False |
The photo_iso column for the table Files. | |
| photo_orientation | Int | False |
The photo_orientation column for the table Files. | |
| photo_takenDateTime | Datetime | False |
The photo_takenDateTime column for the table Files. | |
| publication_level | String | False |
The publication_level column for the table Files. | |
| publication_versionId | String | False |
The publication_versionId column for the table Files. | |
| remoteItem_createdBy_application_displayName | String | False |
The remoteItem_createdBy_application_displayName column for the table Files. | |
| remoteItem_createdBy_application_id | String | False |
The remoteItem_createdBy_application_id column for the table Files. | |
| remoteItem_createdDateTime | Datetime | False |
The remoteItem_createdDateTime column for the table Files. | |
| remoteItem_file_hashes_crc32Hash | String | False |
The remoteItem_file_hashes_crc32Hash column for the table Files. | |
| remoteItem_file_hashes_quickXorHash | String | False |
The remoteItem_file_hashes_quickXorHash column for the table Files. | |
| remoteItem_file_hashes_sha1Hash | String | False |
The remoteItem_file_hashes_sha1Hash column for the table Files. | |
| remoteItem_file_hashes_sha256Hash | String | False |
The remoteItem_file_hashes_sha256Hash column for the table Files. | |
| remoteItem_file_mimeType | String | False |
The remoteItem_file_mimeType column for the table Files. | |
| remoteItem_file_processingMetadata | Bool | False |
The remoteItem_file_processingMetadata column for the table Files. | |
| remoteItem_fileSystemInfo_createdDateTime | Datetime | False |
The remoteItem_fileSystemInfo_createdDateTime column for the table Files. | |
| remoteItem_fileSystemInfo_lastAccessedDateTime | Datetime | False |
The remoteItem_fileSystemInfo_lastAccessedDateTime column for the table Files. | |
| remoteItem_fileSystemInfo_lastModifiedDateTime | Datetime | False |
The remoteItem_fileSystemInfo_lastModifiedDateTime column for the table Files. | |
| remoteItem_folder_childCount | Int | False |
The remoteItem_folder_childCount column for the table Files. | |
| remoteItem_folder_view_sortBy | String | False |
The remoteItem_folder_view_sortBy column for the table Files. | |
| remoteItem_folder_view_sortOrder | String | False |
The remoteItem_folder_view_sortOrder column for the table Files. | |
| remoteItem_folder_view_viewType | String | False |
The remoteItem_folder_view_viewType column for the table Files. | |
| remoteItem_id | String | False |
The remoteItem_id column for the table Files. | |
| remoteItem_image_height | Int | False |
The remoteItem_image_height column for the table Files. | |
| remoteItem_image_width | Int | False |
The remoteItem_image_width column for the table Files. | |
| remoteItem_lastModifiedDateTime | Datetime | False |
The remoteItem_lastModifiedDateTime column for the table Files. | |
| remoteItem_name | String | False |
The remoteItem_name column for the table Files. | |
| remoteItem_package_type | String | False |
The remoteItem_package_type column for the table Files. | |
| remoteItem_parentReference_driveId | String | False |
The remoteItem_parentReference_driveId column for the table Files. | |
| remoteItem_parentReference_driveType | String | False |
The remoteItem_parentReference_driveType column for the table Files. | |
| remoteItem_parentReference_id | String | False |
The remoteItem_parentReference_id column for the table Files. | |
| remoteItem_parentReference_name | String | False |
The remoteItem_parentReference_name column for the table Files. | |
| remoteItem_parentReference_path | String | False |
The remoteItem_parentReference_path column for the table Files. | |
| remoteItem_parentReference_shareId | String | False |
The remoteItem_parentReference_shareId column for the table Files. | |
| remoteItem_parentReference_sharepointIds_listId | String | False |
The remoteItem_parentReference_sharepointIds_listId column for the table Files. | |
| remoteItem_parentReference_sharepointIds_listItemId | String | False |
The remoteItem_parentReference_sharepointIds_listItemId column for the table Files. | |
| remoteItem_parentReference_sharepointIds_listItemUniqueId | String | False |
The remoteItem_parentReference_sharepointIds_listItemUniqueId column for the table Files. | |
| remoteItem_parentReference_sharepointIds_siteId | String | False |
The remoteItem_parentReference_sharepointIds_siteId column for the table Files. | |
| remoteItem_parentReference_sharepointIds_siteUrl | String | False |
The remoteItem_parentReference_sharepointIds_siteUrl column for the table Files. | |
| remoteItem_parentReference_sharepointIds_tenantId | String | False |
The remoteItem_parentReference_sharepointIds_tenantId column for the table Files. | |
| remoteItem_parentReference_sharepointIds_webId | String | False |
The remoteItem_parentReference_sharepointIds_webId column for the table Files. | |
| remoteItem_parentReference_siteId | String | False |
The remoteItem_parentReference_siteId column for the table Files. | |
| remoteItem_shared_scope | String | False |
The remoteItem_shared_scope column for the table Files. | |
| remoteItem_shared_sharedDateTime | Datetime | False |
The remoteItem_shared_sharedDateTime column for the table Files. | |
| remoteItem_size | Long | False |
The remoteItem_size column for the table Files. | |
| remoteItem_specialFolder_name | String | False |
The remoteItem_specialFolder_name column for the table Files. | |
| remoteItem_video_audioBitsPerSample | Int | False |
The remoteItem_video_audioBitsPerSample column for the table Files. | |
| remoteItem_video_audioChannels | Int | False |
The remoteItem_video_audioChannels column for the table Files. | |
| remoteItem_video_audioSamplesPerSecond | Int | False |
The remoteItem_video_audioSamplesPerSecond column for the table Files. | |
| remoteItem_video_bitrate | Int | False |
The remoteItem_video_bitrate column for the table Files. | |
| remoteItem_video_duration | Long | False |
The remoteItem_video_duration column for the table Files. | |
| remoteItem_video_fourCC | String | False |
The remoteItem_video_fourCC column for the table Files. | |
| remoteItem_video_frameRate | Double | False |
The remoteItem_video_frameRate column for the table Files. | |
| remoteItem_video_height | Int | False |
The remoteItem_video_height column for the table Files. | |
| remoteItem_video_width | Int | False |
The remoteItem_video_width column for the table Files. | |
| remoteItem_webDavUrl | String | False |
The remoteItem_webDavUrl column for the table Files. | |
| remoteItem_webUrl | String | False |
The remoteItem_webUrl column for the table Files. | |
| searchResult_onClickTelemetryUrl | String | False |
The searchResult_onClickTelemetryUrl column for the table Files. | |
| shared_owner_application_displayName | String | False |
The shared_owner_application_displayName column for the table Files. | |
| shared_owner_application_id | String | False |
The shared_owner_application_id column for the table Files. | |
| shared_scope | String | False |
The shared_scope column for the table Files. | |
| shared_sharedDateTime | Datetime | False |
The shared_sharedDateTime column for the table Files. | |
| sharepointIds_listId | String | False |
The sharepointIds_listId column for the table Files. | |
| sharepointIds_listItemId | String | False |
The sharepointIds_listItemId column for the table Files. | |
| sharepointIds_listItemUniqueId | String | False |
The sharepointIds_listItemUniqueId column for the table Files. | |
| sharepointIds_siteId | String | False |
The sharepointIds_siteId column for the table Files. | |
| sharepointIds_siteUrl | String | False |
The sharepointIds_siteUrl column for the table Files. | |
| sharepointIds_tenantId | String | False |
The sharepointIds_tenantId column for the table Files. | |
| sharepointIds_webId | String | False |
The sharepointIds_webId column for the table Files. | |
| size | Long | False |
The size column for the table Files. | |
| specialFolder_name | String | False |
The specialFolder_name column for the table Files. | |
| video_audioBitsPerSample | Int | False |
The video_audioBitsPerSample column for the table Files. | |
| video_audioChannels | Int | False |
The video_audioChannels column for the table Files. | |
| video_audioFormat | String | False |
The video_audioFormat column for the table Files. | |
| video_audioSamplesPerSecond | Int | False |
The video_audioSamplesPerSecond column for the table Files. | |
| video_bitrate | Int | False |
The video_bitrate column for the table Files. | |
| video_duration | Long | False |
The video_duration column for the table Files. | |
| video_fourCC | String | False |
The video_fourCC column for the table Files. | |
| video_frameRate | Double | False |
The video_frameRate column for the table Files. | |
| video_height | Int | False |
The video_height column for the table Files. | |
| video_width | Int | False |
The video_width column for the table Files. | |
| webDavUrl | String | False |
The webDavUrl column for the table Files. | |
| UserId | String | False |
The UserId column for the table Files. |
The Office365 table Groups.
Groups には管理者権限が必要です。それらを使用するには、独自のカスタムOAuth アプリを作成して、適切なOAuthClientId とOAuthClientSecret を 設定する必要があります。このアプリでは、Group.Read.All とGroup.ReadWrite.All の権限をリクエストするように設定する必要があります。 これは、https://apps.dev.microsoft.com またはhttp://portal.azure.com の[App Registrations]パネルで設定できます。カスタムアプリの作成に関する 詳細は、Azure AD アプリケーションの作成 を参照してください。
Groups 権限を認可するには、管理者は組織全体に対してGroups のアクセス許可を付与する必要があります。これは、管理者の認可エンドポイントを
介して実行できます。管理者に次のWeb ページに移動して許可を与えさせるだけです。その後、通常どおりにOAuth 認可を実行します。
https://login.microsoftonline.com/common/adminconsent?client_id=[YourClientId]&redirect_uri=http://localhost:33333
組織に複数のテナントがある場合は、url の/common/ をテナントのID に置き換えて、どのテナントに権限を付与するかを指定できます。
すべてのグループを取得したり、GroupId (Id) を指定したり、あるいは特定のカラムでフィルタしたりします。
SELECT * FROM Groups WHERE Id = 'Group Id here' SELECT Id, Description, DisplayName FROM Groups WHERE DisplayName = 'test'
新しいSecurity Group を作成するには、以下が必要です。
INSERT INTO Groups (DisplayName, MailEnabled, MailNickname, SecurityEnabled) VALUES ('Test group', false, 'test', true)
| Name | Type | ReadOnly | References | Description |
| id [KEY] | String | True |
The unique identifier for the group. | |
| Etag | String | False | ||
| deletedDateTime | Datetime | False | ||
| allowExternalSenders | Bool | False |
Indicates if people external to the organization can send messages to the group. | |
| assignedLabels | String | False | ||
| assignedLicenses | String | False | ||
| autoSubscribeNewMembers | Bool | False |
Indicates if new members added to the group will be auto-subscribed to receive email notifications. | |
| classification | String | False | ||
| createdDateTime | Datetime | False | ||
| description | String | False |
An optional description for the group. | |
| displayName | String | False |
The display name for the group. | |
| expirationDateTime | Datetime | False | ||
| groupTypes | String | False |
Specifies the type of group to create. Possible values are Unified to create an Office 365 group, or DynamicMembership for dynamic groups. For all other group types, like security-enabled groups and email-enabled security groups, do not set this property. | |
| hasMembersWithLicenseErrors | Bool | False | ||
| hideFromAddressLists | Bool | False | ||
| hideFromOutlookClients | Bool | False | ||
| isArchived | Bool | False | ||
| isSubscribedByMail | Bool | False |
Indicates whether the current user is subscribed to receive email conversations. | |
| licenseProcessingState_state | String | False | ||
| String | False |
The SMTP address for the group. | ||
| mailEnabled | Bool | False |
Specifies whether the group is mail-enabled. If the securityEnabled property is also true, the group is a mail-enabled security group; otherwise, the group is a Microsoft Exchange distribution group. | |
| mailNickname | String | False |
The mail alias for the group, unique in the organization. | |
| membershipRule | String | False | ||
| membershipRuleProcessingState | String | False | ||
| onPremisesDomainName | String | False | ||
| onPremisesLastSyncDateTime | Datetime | False |
Indicates the last time at which the group was synced with the on-premises directory. | |
| onPremisesNetBiosName | String | False | ||
| onPremisesProvisioningErrors | String | False | ||
| onPremisesSamAccountName | String | False | ||
| onPremisesSecurityIdentifier | String | False |
Contains the on-premises security identifier (SID) for the group that was synchronized from on-premises to the cloud. | |
| onPremisesSyncEnabled | Bool | False |
True if this group is synced from an on-premises directory; false if this group was originally synced from an on-premises directory but is no longer synced; null if this object has never been synced from an on-premises directory. | |
| preferredDataLocation | String | False | ||
| preferredLanguage | String | False | ||
| proxyAddresses | String | False |
The proxy addresses for the table Groups. | |
| renewedDateTime | Datetime | False | ||
| securityEnabled | Bool | False |
Specifies whether the group is a security group. If the mailEnabled property is also true, the group is a mail-enabled security group; otherwise it is a security group. Must be false for Office 365 groups. | |
| securityIdentifier | String | False | ||
| theme | String | False | ||
| unseenCount | Int | False |
Count of posts that the current user has not seen since his last visit. | |
| visibility | String | False |
Specifies the visibility of an Office 365 group. The possible values are: Private, Public, HiddenMembership, or empty (which is interpreted as Public). |
The Office365 table Messages.
Messages からすべてを取得したり、Message (Id)、UserId、またはParentFolderId を指定したり、あるいは結果を特定のカラムでフィルタしたりできます。
SELECT * FROM Messages WHERE Id = 'MyMessageId' SELECT * FROM Messages WHERE UserId = 'MyUserId' SELECT * FROM Messages WHERE ParentFolderId = 'MyParentfolderId' SELECT * FROM Messages WHERE ParentFolderId = 'Drafts' SELECT DisplayName, Id FROM Users WHERE DisplayName LIKE 'John%'
INSERT 後、新しいMessage がユーザーのDrafts フォルダに作成されます。
INSERT INTO Messages (Subject, Body_Content, UserId) VALUES ('New test Email', 'Test Email created.', 'User Id goes here')
Note:メールを送信するには、SendMail を参照してください。
To update a message:
UPDATE Messages SET Subject = 'Email Updated', Body_Content = 'New Body Content' WHERE Id = 'MyMessageId'
If you are executing an INSERT or UPDATE and your message has HTML in its body_content, you must set body_contentType to 'html'.
UPDATE Messages SET body_content = '<my html document>', body_contentType = 'html'
If you don't set body_contentType to 'html', the HTML content of the message (such as elements and tags) will be visible in the body of the resulting email as plaintext instead of being processed as HTML.
This table may return an inconsistent number of results. That is, it can return a number of rows for one query and a different numbers of rows in subsequent queries, even when your messages remain unchanged. This means that some messages may be missing when querying this table.
This is a known bug in the Microsoft Graph API.
There is a workaround that allows the Cloud to retrieve all messages, but it comes with a tradeoff: 'events' and 'contacts' data will be returned along with 'messages' data. When using this workaround, you must use filtering to distinguish between message and non-message rows.
To enable this workaround, add "ClientSidePaging=true;" (without quotation marks) in the value of the Other connection property.
| Name | Type | ReadOnly | References | Description |
| id [KEY] | String | True |
The id column of the Messages table. | |
| Etag | String | False |
The Etag column of the Messages table. | |
| categories | String | False |
The categories column of the Messages table. | |
| changeKey | String | False |
The changeKey column of the Messages table. | |
| createdDateTime | Datetime | False |
The createdDateTime column of the Messages table. | |
| lastModifiedDateTime | Datetime | False |
The lastModifiedDateTime column of the Messages table. | |
| bccRecipients | String | False |
The bccRecipients column of the Messages table. | |
| body_content | String | False |
The body_content column of the Messages table. | |
| body_contentType | String | False |
The body_contentType column of the Messages table. | |
| bodyPreview | String | False |
The bodyPreview column of the Messages table. | |
| ccRecipients | String | False |
The ccRecipients column of the Messages table. | |
| conversationId | String | False |
The conversationId column of the Messages table. | |
| conversationIndex | Binary | False |
The conversationIndex column of the Messages table. | |
| flag_completedDateTime_dateTime | Datetime | False |
The flag_completedDateTime_dateTime column of the Messages table. | |
| flag_completedDateTime_timeZone | String | False |
The flag_completedDateTime_timeZone column of the Messages table. | |
| flag_flagStatus | String | False |
The flag_flagStatus column of the Messages table. | |
| from_emailAddress_address | String | False |
The from_emailAddress_address column of the Messages table. | |
| from_emailAddress_name | String | False |
The from_emailAddress_name column of the Messages table. | |
| hasAttachments | Bool | False |
The hasAttachments column of the Messages table. | |
| importance | String | False |
The importance column of the Messages table. | |
| inferenceClassification | String | False |
The inferenceClassification column of the Messages table. | |
| internetMessageHeaders | String | False |
The internetMessageHeaders column of the Messages table. | |
| internetMessageId | String | False |
The internetMessageId column of the Messages table. | |
| isDeliveryReceiptRequested | Bool | False |
The isDeliveryReceiptRequested column of the Messages table. | |
| isDraft | Bool | False |
The isDraft column of the Messages table. | |
| isRead | Bool | False |
The isRead column of the Messages table. | |
| isReadReceiptRequested | Bool | False |
The isReadReceiptRequested column of the Messages table. | |
| parentFolderId | String | False |
The parentFolderId column of the Messages table. | |
| receivedDateTime | Datetime | False |
The receivedDateTime column of the Messages table. | |
| replyTo | String | False |
The replyTo column of the Messages table. | |
| sender_emailAddress_address | String | False |
The sender_emailAddress_address column of the Messages table. | |
| sender_emailAddress_name | String | False |
The sender_emailAddress_name column of the Messages table. | |
| sentDateTime | Datetime | False |
The sentDateTime column of the Messages table. | |
| subject | String | False |
The subject column of the Messages table. | |
| toRecipients | String | False |
The toRecipients column of the Messages table. | |
| uniqueBody_content | String | False |
The uniqueBody_content column of the Messages table. | |
| uniqueBody_contentType | String | False |
The uniqueBody_contentType column of the Messages table. | |
| webLink | String | False |
The webLink column of the Messages table. | |
| UserId | String | False |
The UserId column of the Messages table. | |
| IsEventMessage | Bool | False |
he column to distinguish if the messages is with calendar/event invites |
The Office365 table Tasks.
Tasks requires the Groups and Tasks permissions from the Microsoft Graph. For this reason, you must create your own OAuth App. Please see Azure AD アプリケーションの作成 for more details.
By default, if no criteria is specified, only Tasks personally assigned to you will show up. For example:
SELECT * FROM Tasks
To bring back tasks across the organization, provide the specific plans ids, or use a subselect for the plan id. For example:
SELECT * FROM Tasks WHERE PlanId IN (SELECT Id FROM Plans)
To insert a Task, the associated plan must be specified:
INSERT INTO Tasks (Title, PlanId) VALUES ('My Title', '99999999-eeeeeeeee')
To update a Task, both the Id and Etag must be specified:
UPDATE Tasks SET Title = 'New Title' WHERE Id = 'xxxxxx-AAAAAAAAAAA' AND Etag = 'W/\"XXXXXXQEBAQEBAQEBAQEBAQEBARCc=\"'
To delete a Task, both the Id and Etag must be specified:
DELETE FROM Tasks WHERE Id = 'xxxxxx-AAAAAAAAAAA' AND Etag = 'W/\"XXXXXXQEBAQEBAQEBAQEBAQEBARCc=\"'
| Name | Type | ReadOnly | References | Description |
| activeChecklistItemCount | Int | False | ||
| appliedCategories | String | False | ||
| assigneePriority | String | False | ||
| assignments | String | False | ||
| bucketId | String | False | ||
| checklistItemCount | Int | False | ||
| completedBy_application_displayName | String | False | ||
| completedBy_application_id | String | False | ||
| completedDateTime | Datetime | False | ||
| conversationThreadId | String | False | ||
| createdBy_application_displayName | String | False | ||
| createdBy_application_id | String | False | ||
| createdDateTime | Datetime | False | ||
| dueDateTime | Datetime | False | ||
| hasDescription | Bool | False | ||
| orderHint | String | False | ||
| percentComplete | Int | False | ||
| planId | String | False | ||
| previewType | String | False | ||
| priority | Int | False | ||
| referenceCount | Int | False | ||
| startDateTime | Datetime | False | ||
| title | String | False | ||
| Etag | String | False | ||
| Id [KEY] | String | False |
Read, Insert, Update and Delete a User.
Users からすべてを取得したり、Id を指定したり、カラムでフィルタリングしたりすることで、Users テーブルをクエリします。
SELECT * FROM Users WHERE Id = '616391f0-32d8-4127-8f25-aa55771d6617' SELECT DisplayName, Id FROM Users WHERE DisplayName LIKE 'John%'
新しい組織User を作成するには、以下が必要です。
INSERT INTO Users (AccountEnabled, DisplayName, MailNickname, UserPrincipalName, PasswordProfile_ForceChangePasswordNextSignIn, PasswordProfile_Password) VALUES (false, 'John Smith', 'JohnS', '[email protected]', true, '123password')
| Name | Type | ReadOnly | References | Description |
| id [KEY] | String | True | ||
| deletedDateTime | Datetime | False | ||
| accountEnabled | Bool | False | ||
| businessPhones | String | False | ||
| city | String | False | ||
| companyName | String | False | ||
| country | String | False | ||
| createdDateTime | Datetime | False | ||
| department | String | False | ||
| displayName | String | False | ||
| employeeHireDate | Datetime | False | ||
| employeeId | String | False | ||
| employeeLeaveDateTime | Datetime | False | ||
| employeeOrgData_costCenter | String | False | ||
| employeeOrgData_division | String | False | ||
| employeeType | String | False | ||
| givenName | String | False | ||
| identities | String | False | ||
| imAddresses | String | False | ||
| isResourceAccount | Bool | False | ||
| jobTitle | String | False | ||
| lastPasswordChangeDateTime | Datetime | False | ||
| String | False | |||
| mailNickname | String | False | ||
| mobilePhone | String | False | ||
| officeLocation | String | False | ||
| onPremisesDistinguishedName | String | False | ||
| onPremisesDomainName | String | False | ||
| onPremisesExtensionAttributes_extensionAttribute1 | String | False | ||
| onPremisesExtensionAttributes_extensionAttribute10 | String | False | ||
| onPremisesExtensionAttributes_extensionAttribute11 | String | False | ||
| onPremisesExtensionAttributes_extensionAttribute12 | String | False | ||
| onPremisesExtensionAttributes_extensionAttribute13 | String | False | ||
| onPremisesExtensionAttributes_extensionAttribute14 | String | False | ||
| onPremisesExtensionAttributes_extensionAttribute15 | String | False | ||
| onPremisesExtensionAttributes_extensionAttribute2 | String | False | ||
| onPremisesExtensionAttributes_extensionAttribute3 | String | False | ||
| onPremisesExtensionAttributes_extensionAttribute4 | String | False | ||
| onPremisesExtensionAttributes_extensionAttribute5 | String | False | ||
| onPremisesExtensionAttributes_extensionAttribute6 | String | False | ||
| onPremisesExtensionAttributes_extensionAttribute7 | String | False | ||
| onPremisesExtensionAttributes_extensionAttribute8 | String | False | ||
| onPremisesExtensionAttributes_extensionAttribute9 | String | False | ||
| onPremisesImmutableId | String | False | ||
| onPremisesLastSyncDateTime | Datetime | False | ||
| onPremisesProvisioningErrors | String | False | ||
| onPremisesSamAccountName | String | False | ||
| onPremisesSecurityIdentifier | String | False | ||
| onPremisesSyncEnabled | Bool | False | ||
| onPremisesUserPrincipalName | String | False | ||
| otherMails | String | False | ||
| passwordProfile_forceChangePasswordNextSignIn | Bool | False | ||
| passwordProfile_forceChangePasswordNextSignInWithMfa | Bool | False | ||
| passwordProfile_password | String | False | ||
| postalCode | String | False | ||
| preferredLanguage | String | False | ||
| securityIdentifier | String | False | ||
| state | String | False | ||
| streetAddress | String | False | ||
| surname | String | False | ||
| userPrincipalName | String | False | ||
| userType | String | False |
ビューは、データを示すという点でテーブルに似ていますが、ビューは読み取り専用です。
クエリは、ビューに対して通常のテーブルと同様に実行することができます。
| Name | Description |
| CalendarView | Retrieve the ccurrences, exceptions, and single instances of events in a calendar view defined by a time range, from the user's default calendar, or from some other calendar of the user's. |
| EventAttachments | EventAttachments View for Office365 data provider. |
| EventOccurrences | Usage information for the operation EventOccurrences.rsd. |
| MessageAttachments | MessageAttachments View for Office365 data provider. |
| Plans | The Office365 table Plans. |
Retrieve the ccurrences, exceptions, and single instances of events in a calendar view defined by a time range, from the user's default calendar, or from some other calendar of the user's.
Get the occurrences, exceptions, and single instances of events in a calendar view defined by a time range, from the user's default calendar, or from some other calendar of the user's. By default only the event occurrences from the user's default calendar in the range of the last 30 days will be returned. You can filter results by CalendarId, UserId, Start_DateTime, End_DateTime.
For example the following queries will be processed server side:
SELECT * FROM CalendarView WHERE Start_DateTime >= '2019-12-10 15:00' AND End_DateTime <= '2020-01-10 14:30'
SELECT * FROM CalendarView WHERE CalendarId = 'AQMkAGRlMWQ5MDg0LWI5ZTQtNDk2Yi1hOTQ1LTU4YzFmMzEwZjlhMgBGAAAD-FjxR3cIwE6TEGSCVtIHcwcAQyR2Iw3coEOaUD1BLt0tnAAAAwcAAABDJHYjDdygQ5pQPUEu3S2cAAACC_IAAAA='
SELECT * FROM CalendarView WHERE CalendarId = 'AQMkAGRlMWQ5MDg0LWI5ZTQtNDk2Yi1hOTQ1LTU4YzFmMzEwZjlhMgBGAAAD-FjxR3cIwE6TEGSCVtIHcwcAQyR2Iw3coEOaUD1BLt0tnAAAAwcAAABDJHYjDdygQ5pQPUEu3S2cAAACC_IAAAA=' AND UserId = 'a98f25b5-5da1-4937-8729-c0d03026caa0' AND Start_DateTime >= '2019-12-15 08:00' AND End_DateTime <= '2020-01-14 08:00'
| Name | Type | References | Description |
| id [KEY] | String | ||
| Etag | String | ||
| categories | String | ||
| changeKey | String | ||
| createdDateTime | Datetime | ||
| lastModifiedDateTime | Datetime | ||
| allowNewTimeProposals | Bool | ||
| attendees | String | ||
| body_content | String | ||
| body_contentType | String | ||
| bodyPreview | String | ||
| end_dateTime | Datetime | ||
| end_timeZone | String | ||
| hasAttachments | Bool | ||
| hideAttendees | Bool | ||
| iCalUId | String | ||
| importance | String | ||
| isAllDay | Bool | ||
| isCancelled | Bool | ||
| isDraft | Bool | ||
| isOnlineMeeting | Bool | ||
| isOrganizer | Bool | ||
| isReminderOn | Bool | ||
| location_address_city | String | ||
| location_address_countryOrRegion | String | ||
| location_address_postalCode | String | ||
| location_address_state | String | ||
| location_address_street | String | ||
| location_coordinates_accuracy | Double | ||
| location_coordinates_altitude | Double | ||
| location_coordinates_altitudeAccuracy | Double | ||
| location_coordinates_latitude | Double | ||
| location_coordinates_longitude | Double | ||
| location_displayName | String | ||
| location_locationEmailAddress | String | ||
| location_locationType | String | ||
| location_locationUri | String | ||
| location_uniqueId | String | ||
| location_uniqueIdType | String | ||
| locations | String | ||
| onlineMeeting_conferenceId | String | ||
| onlineMeeting_joinUrl | String | ||
| onlineMeeting_phones | String | ||
| onlineMeeting_quickDial | String | ||
| onlineMeeting_tollFreeNumbers | String | ||
| onlineMeeting_tollNumber | String | ||
| onlineMeetingProvider | String | ||
| onlineMeetingUrl | String | ||
| organizer_emailAddress_address | String | ||
| organizer_emailAddress_name | String | ||
| originalEndTimeZone | String | ||
| originalStart | Datetime | ||
| originalStartTimeZone | String | ||
| recurrence_pattern_dayOfMonth | Int | ||
| recurrence_pattern_daysOfWeek | String | ||
| recurrence_pattern_firstDayOfWeek | String | ||
| recurrence_pattern_index | String | ||
| recurrence_pattern_interval | Int | ||
| recurrence_pattern_month | Int | ||
| recurrence_pattern_type | String | ||
| recurrence_range_endDate | Datetime | ||
| recurrence_range_numberOfOccurrences | Int | ||
| recurrence_range_recurrenceTimeZone | String | ||
| recurrence_range_startDate | Datetime | ||
| recurrence_range_type | String | ||
| reminderMinutesBeforeStart | Int | ||
| responseRequested | Bool | ||
| responseStatus_response | String | ||
| responseStatus_time | Datetime | ||
| sensitivity | String | ||
| seriesMasterId | String | ||
| showAs | String | ||
| start_dateTime | Datetime | ||
| start_timeZone | String | ||
| subject | String | ||
| transactionId | String | ||
| type | String | ||
| webLink | String | ||
| UserId | String | ||
| CalendarId | String |
EventAttachments View for Office365 data provider.
| Name | Type | References | Description |
| eventId | String |
Events.Id | |
| id [KEY] | String | ||
| contentType | String | ||
| isInline | Bool | ||
| lastModifiedDateTime | Datetime | ||
| name | String | ||
| size | Int |
Usage information for the operation EventOccurrences.rsd.
You can query EventOccurrences by specifying the Event Id, StartDatetime and EndDateTime. EventId is a required field, instead StartDatetime and EndDateTime have a default range of the last 30 days. If you query filtering only by EventId and the specific event does not exist within this time range, you will get empty results.
SELECT * FROM [EventOccurrences] WHERE id = 'event id' AND StartDateTime = '2018/01/01' AND EndDateTime = '2018/12/31'
By default, if StartDateTime and EndDateTime filters are not specified, only the event occurrences from the user's default calendar in the range of the last 30 days will be returned. Otherwise, the query will get the Occurrences of the Event during the period specified by StartDateTime and EndDateTime.
| Name | Type | References | Description |
| GroupId | String | ||
| UserId | String | ||
| Events_id [KEY] | String |
Events.id | |
| id [KEY] | String | ||
| categories | String | ||
| changeKey | String | ||
| createdDateTime | Datetime | ||
| lastModifiedDateTime | Datetime | ||
| allowNewTimeProposals | Bool | ||
| attendees | String | ||
| body_content | String | ||
| body_contentType | String | ||
| bodyPreview | String | ||
| end_dateTime | Datetime | ||
| end_timeZone | String | ||
| hasAttachments | Bool | ||
| hideAttendees | Bool | ||
| iCalUId | String | ||
| importance | String | ||
| isAllDay | Bool | ||
| isCancelled | Bool | ||
| isDraft | Bool | ||
| isOnlineMeeting | Bool | ||
| isOrganizer | Bool | ||
| isReminderOn | Bool | ||
| location_address_city | String | ||
| location_address_countryOrRegion | String | ||
| location_address_postalCode | String | ||
| location_address_state | String | ||
| location_address_street | String | ||
| location_coordinates_accuracy | Double | ||
| location_coordinates_altitude | Double | ||
| location_coordinates_altitudeAccuracy | Double | ||
| location_coordinates_latitude | Double | ||
| location_coordinates_longitude | Double | ||
| location_displayName | String | ||
| location_locationEmailAddress | String | ||
| location_locationType | String | ||
| location_locationUri | String | ||
| location_uniqueId | String | ||
| location_uniqueIdType | String | ||
| locations | String | ||
| onlineMeeting_conferenceId | String | ||
| onlineMeeting_joinUrl | String | ||
| onlineMeeting_phones | String | ||
| onlineMeeting_quickDial | String | ||
| onlineMeeting_tollFreeNumbers | String | ||
| onlineMeeting_tollNumber | String | ||
| onlineMeetingProvider | String | ||
| onlineMeetingUrl | String | ||
| organizer_emailAddress_address | String | ||
| organizer_emailAddress_name | String | ||
| originalEndTimeZone | String | ||
| originalStart | Datetime | ||
| originalStartTimeZone | String | ||
| recurrence_pattern_dayOfMonth | Int | ||
| recurrence_pattern_daysOfWeek | String | ||
| recurrence_pattern_firstDayOfWeek | String | ||
| recurrence_pattern_index | String | ||
| recurrence_pattern_interval | Int | ||
| recurrence_pattern_month | Int | ||
| recurrence_pattern_type | String | ||
| recurrence_range_endDate | Datetime | ||
| recurrence_range_numberOfOccurrences | Int | ||
| recurrence_range_recurrenceTimeZone | String | ||
| recurrence_range_startDate | Datetime | ||
| recurrence_range_type | String | ||
| reminderMinutesBeforeStart | Int | ||
| responseRequested | Bool | ||
| responseStatus_response | String | ||
| responseStatus_time | Datetime | ||
| sensitivity | String | ||
| seriesMasterId | String | ||
| showAs | String | ||
| start_dateTime | Datetime | ||
| start_timeZone | String | ||
| subject | String | ||
| transactionId | String | ||
| type | String | ||
| webLink | String |
MessageAttachments View for Office365 data provider.
| Name | Type | References | Description |
| messageId | String |
Messages.Id | |
| id [KEY] | String | ||
| contentType | String | ||
| isInline | Bool | ||
| lastModifiedDateTime | Datetime | ||
| name | String | ||
| size | Int |
The Office365 table Plans.
Using Plans requires access to Groups permissions. This requires Admin approval. For this reason, you must use your own OAuth App to add the Groups permissions and from the Microsoft Graph. See Azure AD アプリケーションの作成 for more details.
All plans in MS Planner exist as a part of a group. In order to retrieve the list of available plans, you must retrieve a list of available plans per group.
If no GroupId is specified, then the following WHERE condition will be appended to any query:
GroupId IN (SELECT Id FROM Groups)
| Name | Type | References | Description |
| container_containerId | String | ||
| container_type | String | ||
| container_url | String | ||
| createdBy_application_displayName | String | ||
| createdBy_application_id | String | ||
| createdDateTime | Datetime | ||
| owner | String | ||
| title | String | ||
| GroupId | String | ||
| Id [KEY] | String |
ストアドプロシージャはファンクションライクなインターフェースで、Microsoft Office 365 の単純なSELECT/INSERT/UPDATE/DELETE 処理にとどまらずCloud の機能を拡張します。
ストアドプロシージャは、パラメータのリストを受け取り、目的の機能を実行し、プロシージャが成功したか失敗したかを示すとともにMicrosoft Office 365 から関連するレスポンスデータを返します。
| Name | Description |
| AddAttachments | Add attachment(s) to a message. |
| AssignLicense | Add or remove subscriptions for the user. You can also enable and disable specific plans associated with a subscription |
| CancelEvent | Cancels an event. |
| CreateFolder | Upload a new file or update content to an existing file. |
| DeleteAttachment | Delete attachment. |
| FetchAdditionalUserFields | Fetch all T1, T2, and T3 fields for a specified user. |
| ForwardEvent | Forward events to recipients. |
| ForwardMail | Retrieve Forwarded Mail. |
| GetAdminConsentURL | Gets the admin consent URL that must be opened separately by an admin of a given domain to grant access to your application. Only needed when using custom OAuth credentials. |
| MoveMail | Move mail. |
| SendMail | Send mail. |
Add attachment(s) to a message.
| Name | Type | Required | Description |
| Id | String | True | The Id of the message to add the attachment to. |
| DestinationType | String | True | The destination object type where the attachment is being added. Allowed values are: Message or Event. |
| FileName | String | True | Name of the email attachment. |
| LocalFile | String | False | The file containing the content of the attachment |
| ContentBytes | String | False | Content of the attachment encoded to Base64. |
| Name | Type | Description |
| ContentBytes | String | Added Successfully - if the attachment content was added to the message/event. |
| Id | String | Id of the attachment that was added. |
| LastModifiedDateTime | Datetime | Last modified date time of attachment that was added. |
| Isinline | Boolean | Whether the attachment that was added is inline. |
| Name | String | Name of the attachment that was added. |
| Contenttype | String | Content-type of the attachment that was added. |
| Size | Int | Size of the attachment that was added. |
Add or remove subscriptions for the user. You can also enable and disable specific plans associated with a subscription
| Name | Type | Required | Description |
| UserID | String | False | The Id of the User for which License needs to be assigned. Don't feed if you have to do for the User with which you are logged in. |
| UserPrincipalName | String | False | The Principal Name of the User for which License needs to be assigned. Don't feed if you have to do for the User with which you are logged in. |
| AddLicenseSkuId | String | False | The unique identifier for the SKU. |
| DisabledPlans | String | False | A collection of the comma seperated unique identifiers for plans that have been disabled. |
| RemoveLicenses | String | False | A collection of comma seperated GUIDs that identify the licenses to remove. |
| Name | Type | Description |
| Status | String | Stored Procedure Execution Status |
Cancels an event.
| Name | Type | Required | Description |
| EventId | String | True | Id of the event. |
| UserId | String | False | Id of the user. |
| UserPrincipalName | String | False | The Principal Name of the User for which License needs to be assigned. Don't feed if you have to do for the User with which you are logged in. |
| Comment | String | False | A comment to include. Can be an empty string. |
| Name | Type | Description |
| Status | String | Stored Procedure Execution Status |
Upload a new file or update content to an existing file.
| Name | Type | Required | Description |
| FolderName | String | True | Name of the folder to be created. |
| ParentId | String | False | Id of the folder where the current item is. |
| Name | Type | Description |
| Id | String | Id of the Foler created. |
Delete attachment.
| Name | Type | Required | Description |
| MessageId | String | True | The email Id. |
| AttachmentID | String | True | Id of the attachment. |
| Name | Type | Description |
| Id | String | Id of the message that was deleted. |
Fetch all T1, T2, and T3 fields for a specified user.
| Name | Type | Required | Description |
| UserId | String | True | The unique identifier of the user. |
| IncludeFields | String | False | Comma-separated list of the specific fields you want to include in the fetch. |
| ExcludeFields | String | False | Comma-separated list of the specific fields you want to exclude in the fetch. |
| Name | Type | Description |
| * | String | Results of the query: all the fields of the User object. |
Forward events to recipients.
| Name | Type | Required | Description |
| EventId | String | True | Id of the event. |
| ToRecipients | String | True | A semicolon-separated list of recipient emails. |
| UserId | String | False | Id of the user. |
| UserPrincipalName | String | False | The Principal Name of the User for which License needs to be assigned. Don't feed if you have to do for the User with which you are logged in. |
| Comment | String | False | A comment to include. Can be an empty string. |
| Name | Type | Description |
| Status | String | Stored Procedure Execution Status |
Retrieve Forwarded Mail.
| Name | Type | Required | Description |
| MessageId | String | True | Id of the email. |
| ToRecipients | String | True | A semicolon-separated list of recipient emails. |
| Comment | String | False | BodyContent on top of the original message. |
| Name | Type | Description |
| Status | String | Stored Procedure Execution Status |
Gets the admin consent URL that must be opened separately by an admin of a given domain to grant access to your application. Only needed when using custom OAuth credentials.
| Name | Type | Required | Description |
| CallbackUrl | String | False | The URL the user will be redirected to after authorizing your application. This value must match the Reply URL in the Azure AD app settings. |
| State | String | False | The same value for state that you sent when you requested the authorization code. |
| Scope | String | False | A space-separated list of permissions to request from the Admin.
デフォルト値はoffline_access https://graph.microsoft.com/group.read.all https://graph.microsoft.com/group.readwrite.all https://graph.microsoft.com/user.read https://graph.microsoft.com/user.readwrite.all https://graph.microsoft.com/calendars.readwrite https://graph.microsoft.com/contacts.readwrite https://graph.microsoft.com/mail.readwrite https://graph.microsoft.com/Files.ReadWrite.Allです。 |
| Name | Type | Description |
| URL | String | The authorization URL, entered into a Web browser to obtain the verifier token and authorize your app. |
Move mail.
| Name | Type | Required | Description |
| MessageId | String | True | The email Id. |
| DestinationId | String | True | Id of the destination folder where the email will be moved to. |
| Name | Type | Description |
| Id | String | Moved mail Id. |
Send mail.
| Name | Type | Required | Description |
| Id | String | False | The Id of the message to be sent (this is optional). The user can either use an existing email Id or send a new email by optionally filling the other fields. |
| Subject | String | False | The email subject. |
| Content | String | False | Email body content. |
| Attachments | String | False | The attachments. Specify File attachments in the following format: filename1,filecontent1;filename2,filecontent2. Each filecontent can be either base64 data, or the path of a local file with the @ character before it |
| FileName | String | False | Name of the email attachment. |
| LocalFile | String | False | The file containing the content of the attachment |
| ContentBytes | String | False | Content of the attachment encoded to base 64. |
| ToRecipients | String | False | The recipients. Specify recipients in the following order: [email protected];[email protected]. |
| CCRecipients | String | False | The CC recipients. Specify recipients in the following order: [email protected];[email protected]. |
| BccRecipients | String | False | The Bcc: recipients for the message. Specify recipients in the following order: [email protected];[email protected]. |
| SenderEmail | String | False | The email address on who's behalf email needs to be sent. Set this if you want to send email on behalf of other user's account. |
| FromEmail | String | False | The email address of the User from which email needs to be sent. Set this if you want to send email from other user's account. |
| ContentType | String | False | The content type of the email body.
使用できる値は次のとおりです。text, html デフォルト値はtextです。 |
| Name | Type | Description |
| Status | String | Stored Procedure Execution Status |
このセクションで説明されているシステムテーブルをクエリして、スキーマ情報、データソース機能に関する情報、およびバッチ操作の統計にアクセスできます。
以下のテーブルは、Microsoft Office 365 のデータベースメタデータを返します。
以下のテーブルは、データソースへの接続方法およびクエリ方法についての情報を返します。
次のテーブルは、データ変更クエリのクエリ統計を返します。
利用可能なデータベースをリストします。
次のクエリは、接続文字列で決定されるすべてのデータベースを取得します。
SELECT * FROM sys_catalogs
| Name | Type | Description |
| CatalogName | String | データベース名。 |
利用可能なスキーマをリストします。
次のクエリは、すべての利用可能なスキーマを取得します。
SELECT * FROM sys_schemas
| Name | Type | Description |
| CatalogName | String | データベース名。 |
| SchemaName | String | スキーマ名。 |
利用可能なテーブルをリストします。
次のクエリは、利用可能なテーブルおよびビューを取得します。
SELECT * FROM sys_tables
| Name | Type | Description |
| CatalogName | String | テーブルまたはビューを含むデータベース。 |
| SchemaName | String | テーブルまたはビューを含むスキーマ。 |
| TableName | String | テーブル名またはビュー名。 |
| TableType | String | テーブルの種類(テーブルまたはビュー)。 |
| Description | String | テーブルまたはビューの説明。 |
| IsUpdateable | Boolean | テーブルが更新可能かどうか。 |
利用可能なテーブルおよびビューのカラムについて説明します。
次のクエリは、Events テーブルのカラムとデータ型を返します。
SELECT ColumnName, DataTypeName FROM sys_tablecolumns WHERE TableName='Events'
| Name | Type | Description |
| CatalogName | String | テーブルまたはビューを含むデータベースの名前。 |
| SchemaName | String | テーブルまたはビューを含むスキーマ。 |
| TableName | String | カラムを含むテーブルまたはビューの名前。 |
| ColumnName | String | カラム名。 |
| DataTypeName | String | データ型の名前。 |
| DataType | Int32 | データ型を示す整数値。この値は、実行時に環境に基づいて決定されます。 |
| Length | Int32 | カラムのストレージサイズ。 |
| DisplaySize | Int32 | 指定されたカラムの通常の最大幅(文字数)。 |
| NumericPrecision | Int32 | 数値データの最大桁数。文字データおよび日時データの場合は、カラムの長さ(文字数)。 |
| NumericScale | Int32 | カラムのスケール(小数点以下の桁数)。 |
| IsNullable | Boolean | カラムがNull を含められるかどうか。 |
| Description | String | カラムの簡単な説明。 |
| Ordinal | Int32 | カラムのシーケンスナンバー。 |
| IsAutoIncrement | String | カラムに固定増分値が割り当てられるかどうか。 |
| IsGeneratedColumn | String | 生成されたカラムであるかどうか。 |
| IsHidden | Boolean | カラムが非表示かどうか。 |
| IsArray | Boolean | カラムが配列かどうか。 |
| IsReadOnly | Boolean | カラムが読み取り専用かどうか。 |
| IsKey | Boolean | sys_tablecolumns から返されたフィールドがテーブルの主キーであるかどうか。 |
利用可能なストアドプロシージャをリストします。
次のクエリは、利用可能なストアドプロシージャを取得します。
SELECT * FROM sys_procedures
| Name | Type | Description |
| CatalogName | String | ストアドプロシージャを含むデータベース。 |
| SchemaName | String | ストアドプロシージャを含むスキーマ。 |
| ProcedureName | String | ストアドプロシージャの名前。 |
| Description | String | ストアドプロシージャの説明。 |
| ProcedureType | String | PROCEDURE やFUNCTION などのプロシージャのタイプ。 |
ストアドプロシージャパラメータについて説明します。
次のクエリは、SendMail ストアドプロシージャのすべての入力パラメータについての情報を返します。
SELECT * FROM sys_procedureparameters WHERE ProcedureName='SendMail' AND Direction=1 OR Direction=2
| Name | Type | Description |
| CatalogName | String | ストアドプロシージャを含むデータベースの名前。 |
| SchemaName | String | ストアドプロシージャを含むスキーマの名前。 |
| ProcedureName | String | パラメータを含むストアドプロシージャの名前。 |
| ColumnName | String | ストアドプロシージャパラメータの名前。 |
| Direction | Int32 | パラメータのタイプに対応する整数値:input (1)。input/output (2)、またはoutput(4)。input/output タイプパラメータは、入力パラメータと出力パラメータの両方になれます。 |
| DataTypeName | String | データ型の名前。 |
| DataType | Int32 | データ型を示す整数値。この値は、実行時に環境に基づいて決定されます。 |
| Length | Int32 | 文字データの場合は、許可される文字数。数値データの場合は、許可される桁数。 |
| NumericPrecision | Int32 | 数値データの場合は最大精度。文字データおよび日時データの場合は、カラムの長さ(文字数)。 |
| NumericScale | Int32 | 数値データの小数点以下の桁数。 |
| IsNullable | Boolean | パラメータがNull を含められるかどうか。 |
| IsRequired | Boolean | プロシージャの実行にパラメータが必要かどうか。 |
| IsArray | Boolean | パラメータが配列かどうか。 |
| Description | String | パラメータの説明。 |
| Ordinal | Int32 | パラメータのインデックス。 |
主キーおよび外部キーについて説明します。
次のクエリは、Events テーブルの主キーを取得します。
SELECT * FROM sys_keycolumns WHERE IsKey='True' AND TableName='Events'
| Name | Type | Description |
| CatalogName | String | キーを含むデータベースの名前。 |
| SchemaName | String | キーを含むスキーマの名前。 |
| TableName | String | キーを含むテーブルの名前。 |
| ColumnName | String | キーカラムの名前 |
| IsKey | Boolean | カラムがTableName フィールドで参照されるテーブル内の主キーかどうか。 |
| IsForeignKey | Boolean | カラムがTableName フィールドで参照される外部キーかどうか。 |
| PrimaryKeyName | String | 主キーの名前。 |
| ForeignKeyName | String | 外部キーの名前。 |
| ReferencedCatalogName | String | 主キーを含むデータベース。 |
| ReferencedSchemaName | String | 主キーを含むスキーマ。 |
| ReferencedTableName | String | 主キーを含むテーブル。 |
| ReferencedColumnName | String | 主キーのカラム名。 |
外部キーについて説明します。
次のクエリは、他のテーブルを参照するすべての外部キーを取得します。
SELECT * FROM sys_foreignkeys WHERE ForeignKeyType = 'FOREIGNKEY_TYPE_IMPORT'
| 名前 | タイプ | 説明 |
| CatalogName | String | キーを含むデータベースの名前。 |
| SchemaName | String | キーを含むスキーマの名前。 |
| TableName | String | キーを含むテーブルの名前。 |
| ColumnName | String | キーカラムの名前 |
| PrimaryKeyName | String | 主キーの名前。 |
| ForeignKeyName | String | 外部キーの名前。 |
| ReferencedCatalogName | String | 主キーを含むデータベース。 |
| ReferencedSchemaName | String | 主キーを含むスキーマ。 |
| ReferencedTableName | String | 主キーを含むテーブル。 |
| ReferencedColumnName | String | 主キーのカラム名。 |
| ForeignKeyType | String | 外部キーがインポート(他のテーブルを指す)キーかエクスポート(他のテーブルから参照される)キーかを指定します。 |
主キーについて説明します。
次のクエリは、すべてのテーブルとビューから主キーを取得します。
SELECT * FROM sys_primarykeys
| Name | Type | Description |
| CatalogName | String | キーを含むデータベースの名前。 |
| SchemaName | String | キーを含むスキーマの名前。 |
| TableName | String | キーを含むテーブルの名前。 |
| ColumnName | String | キーカラムの名前。 |
| KeySeq | String | 主キーのシーケンス番号。 |
| KeyName | String | 主キーの名前。 |
利用可能なインデックスについて説明します。インデックスをフィルタリングすることで、より高速なクエリ応答時間でセレクティブクエリを記述できます。
次のクエリは、主キーでないすべてのインデックスを取得します。
SELECT * FROM sys_indexes WHERE IsPrimary='false'
| Name | Type | Description |
| CatalogName | String | インデックスを含むデータベースの名前。 |
| SchemaName | String | インデックスを含むスキーマの名前。 |
| TableName | String | インデックスを含むテーブルの名前。 |
| IndexName | String | インデックス名。 |
| ColumnName | String | インデックスに関連付けられたカラムの名前。 |
| IsUnique | Boolean | インデックスが固有の場合はTrue。そうでない場合はFalse。 |
| IsPrimary | Boolean | インデックスが主キーの場合はTrue。そうでない場合はFalse。 |
| Type | Int16 | インデックスタイプに対応する整数値:statistic (0)、clustered (1)、hashed (2)、またはother (3)。 |
| SortOrder | String | 並べ替え順序:A が昇順、D が降順。 |
| OrdinalPosition | Int16 | インデックスのカラムのシーケンスナンバー。 |
利用可能な接続プロパティと、接続文字列に設定されている接続プロパティに関する情報を返します。
次のクエリは、接続文字列に設定されている、あるいはデフォルト値で設定されているすべての接続プロパティを取得します。
SELECT * FROM sys_connection_props WHERE Value <> ''
| Name | Type | Description |
| Name | String | 接続プロパティ名。 |
| ShortDescription | String | 簡単な説明。 |
| Type | String | 接続プロパティのデータ型。 |
| Default | String | 明示的に設定されていない場合のデフォルト値。 |
| Values | String | 可能な値のカンマ区切りリスト。別な値が指定されていると、検証エラーがスローされます。 |
| Value | String | 設定した値またはあらかじめ設定されたデフォルト。 |
| Required | Boolean | プロパティが接続に必要かどうか。 |
| Category | String | 接続プロパティのカテゴリ。 |
| IsSessionProperty | String | プロパティが、現在の接続に関する情報を保存するために使用されるセッションプロパティかどうか。 |
| Sensitivity | String | プロパティの機密度。これは、プロパティがロギングおよび認証フォームで難読化されているかどうかを通知します。 |
| PropertyName | String | キャメルケースの短縮形の接続プロパティ名。 |
| Ordinal | Int32 | パラメータのインデックス。 |
| CatOrdinal | Int32 | パラメータカテゴリのインデックス。 |
| Hierarchy | String | このプロパティと一緒に設定する必要がある、関連のある依存プロパティを表示します。 |
| Visible | Boolean | プロパティが接続UI に表示されるかどうかを通知します。 |
| ETC | String | プロパティに関するその他のさまざまな情報。 |
Cloud がデータソースにオフロードできるSELECT クエリ処理について説明します。
SQL 構文の詳細については、SQL 準拠 を参照してください。
以下はSQL 機能のサンプルデータセットです。 SELECT 機能のいくつかの側面がサポートされている場合には、カンマ区切りのリストで返されます。サポートされていない場合、カラムにはNO が入ります。
| 名前 | 説明 | 有効な値 |
| AGGREGATE_FUNCTIONS | サポートされている集計関数。 | AVG, COUNT, MAX, MIN, SUM, DISTINCT |
| COUNT | COUNT 関数がサポートされているかどうか。 | YES, NO |
| IDENTIFIER_QUOTE_OPEN_CHAR | 識別子をエスケープするための開始文字。 | [ |
| IDENTIFIER_QUOTE_CLOSE_CHAR | 識別子をエスケープするための終了文字。 | ] |
| SUPPORTED_OPERATORS | サポートされているSQL 演算子。 | =, >, <, >=, <=, <>, !=, LIKE, NOT LIKE, IN, NOT IN, IS NULL, IS NOT NULL, AND, OR |
| GROUP_BY | GROUP BY がサポートされているかどうか。サポートされている場合、どのレベルでサポートされているか。 | NO, NO_RELATION, EQUALS_SELECT, SQL_GB_COLLATE |
| OJ_CAPABILITIES | サポートされている外部結合の種類。 | NO, LEFT, RIGHT, FULL, INNER, NOT_ORDERED, ALL_COMPARISON_OPS |
| OUTER_JOINS | 外部結合がサポートされているかどうか。 | YES, NO |
| SUBQUERIES | サブクエリがサポートされているかどうか。サポートされていれば、どのレベルでサポートされているか。 | NO, COMPARISON, EXISTS, IN, CORRELATED_SUBQUERIES, QUANTIFIED |
| STRING_FUNCTIONS | サポートされている文字列関数。 | LENGTH, CHAR, LOCATE, REPLACE, SUBSTRING, RTRIM, LTRIM, RIGHT, LEFT, UCASE, SPACE, SOUNDEX, LCASE, CONCAT, ASCII, REPEAT, OCTET, BIT, POSITION, INSERT, TRIM, UPPER, REGEXP, LOWER, DIFFERENCE, CHARACTER, SUBSTR, STR, REVERSE, PLAN, UUIDTOSTR, TRANSLATE, TRAILING, TO, STUFF, STRTOUUID, STRING, SPLIT, SORTKEY, SIMILAR, REPLICATE, PATINDEX, LPAD, LEN, LEADING, KEY, INSTR, INSERTSTR, HTML, GRAPHICAL, CONVERT, COLLATION, CHARINDEX, BYTE |
| NUMERIC_FUNCTIONS | サポートされている数値関数。 | ABS, ACOS, ASIN, ATAN, ATAN2, CEILING, COS, COT, EXP, FLOOR, LOG, MOD, SIGN, SIN, SQRT, TAN, PI, RAND, DEGREES, LOG10, POWER, RADIANS, ROUND, TRUNCATE |
| TIMEDATE_FUNCTIONS | サポートされている日付および時刻関数。 | NOW, CURDATE, DAYOFMONTH, DAYOFWEEK, DAYOFYEAR, MONTH, QUARTER, WEEK, YEAR, CURTIME, HOUR, MINUTE, SECOND, TIMESTAMPADD, TIMESTAMPDIFF, DAYNAME, MONTHNAME, CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP, EXTRACT |
| REPLICATION_SKIP_TABLES | レプリケーション中にスキップされたテーブルを示します。 | |
| REPLICATION_TIMECHECK_COLUMNS | レプリケーション中に更新判断のカラムとして使用するかどうかを、(指定された順に)チェックするカラムのリストを含む文字列の配列。 | |
| IDENTIFIER_PATTERN | 識別子としてどの文字列が有効かを示す文字列値。 | |
| SUPPORT_TRANSACTION | プロバイダーが、コミットやロールバックなどのトランザクションをサポートしているかどうかを示します。 | YES, NO |
| DIALECT | 使用するSQL ダイアレクトを示します。 | |
| KEY_PROPERTIES | Uniform データベースを特定するプロパティを示します。 | |
| SUPPORTS_MULTIPLE_SCHEMAS | プロバイダー用に複数のスキームが存在するかどうかを示します。 | YES, NO |
| SUPPORTS_MULTIPLE_CATALOGS | プロバイダー用に複数のカタログが存在するかどうかを示します。 | YES, NO |
| DATASYNCVERSION | このドライバーにアクセスするために必要な、CData Sync のバージョン。 | Standard, Starter, Professional, Enterprise |
| DATASYNCCATEGORY | このドライバーのCData Sync カテゴリ。 | Source, Destination, Cloud Destination |
| SUPPORTSENHANCEDSQL | API で提供されている以上の、追加SQL 機能がサポートされているかどうか。 | TRUE, FALSE |
| SUPPORTS_BATCH_OPERATIONS | バッチ操作がサポートされているかどうか。 | YES, NO |
| SQL_CAP | このドライバーでサポートされているすべてのSQL 機能。 | SELECT, INSERT, DELETE, UPDATE, TRANSACTIONS, ORDERBY, OAUTH, ASSIGNEDID, LIMIT, LIKE, BULKINSERT, COUNT, BULKDELETE, BULKUPDATE, GROUPBY, HAVING, AGGS, OFFSET, REPLICATE, COUNTDISTINCT, JOINS, DROP, CREATE, DISTINCT, INNERJOINS, SUBQUERIES, ALTER, MULTIPLESCHEMAS, GROUPBYNORELATION, OUTERJOINS, UNIONALL, UNION, UPSERT, GETDELETED, CROSSJOINS, GROUPBYCOLLATE, MULTIPLECATS, FULLOUTERJOIN, MERGE, JSONEXTRACT, BULKUPSERT, SUM, SUBQUERIESFULL, MIN, MAX, JOINSFULL, XMLEXTRACT, AVG, MULTISTATEMENTS, FOREIGNKEYS, CASE, LEFTJOINS, COMMAJOINS, WITH, LITERALS, RENAME, NESTEDTABLES, EXECUTE, BATCH, BASIC, INDEX |
| PREFERRED_CACHE_OPTIONS | 使用したいcacheOptions を指定する文字列値。 | |
| ENABLE_EF_ADVANCED_QUERY | ドライバーがEntity Framework の高度なクエリをサポートしているかどうかを示します。サポートしていなければ、クエリはクライアントサイドで処理されます。 | YES, NO |
| PSEUDO_COLUMNS | 利用可能な疑似カラムを示す文字列の配列。 | |
| MERGE_ALWAYS | 値がtrue であれば、CData Sync 内でMerge Model が強制的に実行されます。 | TRUE, FALSE |
| REPLICATION_MIN_DATE_QUERY | レプリケート開始日時を返すSELECT クエリ。 | |
| REPLICATION_MIN_FUNCTION | サーバーサイドでmin を実行するために使用する式名を、プロバイダーが指定できるようになります。 | |
| REPLICATION_START_DATE | レプリケート開始日を、プロバイダーが指定できるようになります。 | |
| REPLICATION_MAX_DATE_QUERY | レプリケート終了日時を返すSELECT クエリ。 | |
| REPLICATION_MAX_FUNCTION | サーバーサイドでmax を実行するために使用する式名を、プロバイダーが指定できるようになります。 | |
| IGNORE_INTERVALS_ON_INITIAL_REPLICATE | 初回のレプリケートで、レプリケートをチャンクに分割しないテーブルのリスト。 | |
| CHECKCACHE_USE_PARENTID | CheckCache 構文を親キーカラムに対して実行するかどうかを示します。 | TRUE, FALSE |
| CREATE_SCHEMA_PROCEDURES | スキーマファイルの生成に使用できる、ストアドプロシージャを示します。 |
次のクエリは、WHERE 句で使用できる演算子を取得します。
SELECT * FROM sys_sqlinfo WHERE Name = 'SUPPORTED_OPERATORS'
WHERE 句では、個々のテーブルの制限や要件が異なる場合がありますので注意してください。詳しくは、データモデル セクションを参照してください。
| Name | Type | Description |
| NAME | String | SQL 構文のコンポーネント、またはサーバー上で処理できる機能。 |
| VALUE | String | サポートされるSQL またはSQL 構文の詳細。 |
試行された変更に関する情報を返します。
次のクエリは、バッチ処理で変更された行のId を取得します。
SELECT * FROM sys_identity
| Name | Type | Description |
| Id | String | データ変更処理から返された、データベース生成Id。 |
| Batch | String | バッチの識別子。1 は単一処理。 |
| Operation | String | バッチ内の処理の結果:INSERTED、UPDATED、またはDELETED。 |
| Message | String | SUCCESS、またはバッチ内の更新が失敗した場合のエラーメッセージ。 |
利用可能なシステム情報を説明します。
次のクエリは、すべてのカラムを取得します。
SELECT * FROM sys_information
| Name | Type | Description |
| Product | String | 製品名。 |
| Version | String | 製品のバージョン番号。 |
| Datasource | String | 製品が接続するデータソースの名前。 |
| NodeId | String | 製品がインストールされているマシンの固有識別子。 |
| HelpURL | String | 製品のヘルプドキュメントのURL。 |
| License | String | 製品のライセンス情報。(この情報が利用できない場合、この項目は空白のままか「N/A」と表示されます。) |
| Location | String | 製品のライブラリが格納されているファイルパスの場所。 |
| Environment | String | 製品が現在稼働している環境またはランタイムのバージョン。 |
| DataSyncVersion | String | 本コネクタを使用するために必要なCData Sync のティア。 |
| DataSyncCategory | String | CData Sync 機能のカテゴリ(例:Source、Destination)。 |
Cloud は、データソースの型を、スキーマで使用可能な対応するデータ型にマッピングします。以下のテーブルはこれらのマッピングを説明します。
| Microsoft Office 365 (OData V4) | CData スキーマ |
| Edm.Binary | binary |
| Edm.Boolean | bool |
| Edm.Date | datetime |
| Edm.DateTimeOffset | datetime |
| Edm.Decimal | decimal |
| Edm.Double | double |
| Edm.Guid | guid |
| Edm.Int32 | int |
| Edm.String | string |
| Edm.TimeOfDay | time |
| プロパティ | 説明 |
| AuthScheme | Microsoft Office 365 に接続する際に使用する認証の種類を指定します。このプロパティが空白の場合は、デフォルトの認証が使用されます。 |
| プロパティ | 説明 |
| AzureTenant | データにアクセスするために使用されるMicrosoft Office 365 テナントを、名前(例えば、contoso.omnicrosoft.com)またはID で識別します。(条件付き) |
| AzureEnvironment | 接続するAzure ネットワーク環境を指定します。Azure アカウントが追加されたネットワークと同じである必要があります。 |
| プロパティ | 説明 |
| OAuthClientId | カスタムOAuth アプリケーションの作成時に割り当てられたクライアントId を指定します。(コンシューマーキーとも呼ばれます。)このID は、カスタムアプリケーションをOAuth 認可サーバーに登録します。 |
| OAuthClientSecret | カスタムOAuth アプリケーションの作成時に割り当てられたクライアントシークレットを指定します。( コンシューマーシークレット とも呼ばれます。)このシークレットは、カスタムアプリケーションをOAuth 認可サーバーに登録します。 |
| OAuthGrantType | 選択したOAuth フローのグラント種別を指定します。 この値は、OAuth カスタムアプリケーション作成時に設定されたグラント種別と同じである必要があります。 |
| プロパティ | 説明 |
| OAuthJWTCert | JWT 証明書のストア。 |
| OAuthJWTCertType | JWT 証明書を格納するキーストアの種類。 |
| OAuthJWTCertPassword | OAuth JWT 証明書のパスワード。パスワードを必要とする証明書ストアにアクセスするために使用されます。証明書ストアがパスワードを必要としない場合は、このプロパティを空白のままにします。 |
| OAuthJWTCertSubject | OAuth JWT 証明書のサブジェクトで、ストアで一致する証明書を検索するために使用されます。部分一致と、先頭の証明書を選択するためのワイルドカード '*' をサポートします。 |
| プロパティ | 説明 |
| SSLServerCert | TLS/SSL を使用して接続する際に、サーバーが受け入れ可能な証明書を指定します。 |
| プロパティ | 説明 |
| Verbosity | ログファイルのVerbosity レベルを指定し、記録される情報の詳細度を制御します。サポートされる値の範囲は1から5までです。 |
| プロパティ | 説明 |
| BrowsableSchemas | レポートされるスキーマを利用可能なすべてのスキーマのサブセットに制限するオプション設定。例えば、 BrowsableSchemas=SchemaA,SchemaB,SchemaC です。 |
| プロパティ | 説明 |
| DirectoryRetrievalDepth | Specify how many folders deep you want to get results for Files table. The resources directly in the root are located at depth 0. The resources one folder deeper are located at depth 1 and so on. You can specify the value -1 to get all the data in a drive no matter the depth they're in. |
| MaxRows | 集計やGROUP BY を使用しないクエリで返される最大行数を指定します。 |
| Pagesize | Microsoft Office 365 から返される、1ページあたりの結果の最大数を指定します。この設定は、ほとんどのユースケースに最適化されている、データソースによって設定されたデフォルトのページサイズをオーバーライドします。 |
| PseudoColumns | テーブルカラムとして公開する擬似カラムを指定します。'TableName=ColumnName;TableName=ColumnName' という形式を使用します。デフォルトは空の文字列で、このプロパティを無効にします。 |
| Timeout | provider がタイムアウトエラーを返すまでにサーバーからの応答を待機する最大時間を秒単位で指定します。デフォルトは60秒です。タイムアウトを無効にするには0を設定します。 |
| UseClientSidePaging | Whether or not the CData ADO.NET Provider for Microsoft Office 365 should use client side paging. |
このセクションでは、本プロバイダーの接続文字列で設定可能なAuthentication プロパティの全リストを提供します。
| プロパティ | 説明 |
| AuthScheme | Microsoft Office 365 に接続する際に使用する認証の種類を指定します。このプロパティが空白の場合は、デフォルトの認証が使用されます。 |
Microsoft Office 365 に接続する際に使用する認証の種類を指定します。このプロパティが空白の場合は、デフォルトの認証が使用されます。
string
"AzureAD"
Azure AD で認証するためのカスタムアプリケーションの作成方法については、Azure AD アプリケーションの作成 を参照してください。
Azure AD サービスプリンシパルで認証するためのカスタムアプリケーションの作成方法については、サービスプリンシパルによるAzure AD アプリの作成 を参照してください。
このセクションでは、本プロバイダーの接続文字列で設定可能なAzure Authentication プロパティの全リストを提供します。
| プロパティ | 説明 |
| AzureTenant | データにアクセスするために使用されるMicrosoft Office 365 テナントを、名前(例えば、contoso.omnicrosoft.com)またはID で識別します。(条件付き) |
| AzureEnvironment | 接続するAzure ネットワーク環境を指定します。Azure アカウントが追加されたネットワークと同じである必要があります。 |
データにアクセスするために使用されるMicrosoft Office 365 テナントを、名前(例えば、contoso.omnicrosoft.com)またはID で識別します。(条件付き)
string
""
テナントは、主にドメイン(例えば、microsoft.com)に関連付けられた、組織のデジタル表現です。 テナントは、Tenant ID(ディレクトリID とも呼ばれる)によって管理されます。これは、Azure リソースへのアクセスや管理権限をユーザーに割り当てる際に指定します。
Azure ポータルでディレクトリID を見つけるには、Azure Active Directory -> プロパティに移動します。
AuthScheme = AzureServicePrincipal またはAzureServicePrincipalCert のいずれかである場合、またはAzureTenant = AzureAD であり、ユーザーが複数のテナントに属している場合は、AzureTenant を指定する必要があります。
接続するAzure ネットワーク環境を指定します。Azure アカウントが追加されたネットワークと同じである必要があります。
string
"GLOBAL"
Azure アカウントがGlobal ネットワークとは異なるネットワーク(China、USGOVT、USGOVTDOD など)の一部である場合は、必要です。
このセクションでは、本プロバイダーの接続文字列で設定可能なOAuth プロパティの全リストを提供します。
| プロパティ | 説明 |
| OAuthClientId | カスタムOAuth アプリケーションの作成時に割り当てられたクライアントId を指定します。(コンシューマーキーとも呼ばれます。)このID は、カスタムアプリケーションをOAuth 認可サーバーに登録します。 |
| OAuthClientSecret | カスタムOAuth アプリケーションの作成時に割り当てられたクライアントシークレットを指定します。( コンシューマーシークレット とも呼ばれます。)このシークレットは、カスタムアプリケーションをOAuth 認可サーバーに登録します。 |
| OAuthGrantType | 選択したOAuth フローのグラント種別を指定します。 この値は、OAuth カスタムアプリケーション作成時に設定されたグラント種別と同じである必要があります。 |
カスタムOAuth アプリケーションの作成時に割り当てられたクライアントId を指定します。(コンシューマーキーとも呼ばれます。)このID は、カスタムアプリケーションをOAuth 認可サーバーに登録します。
string
""
OAuthClientId は、ユーザーがOAuth 経由で認証を行う前に設定する必要があるいくつかの接続パラメータの1つです。詳細は接続の確立を参照してください。
カスタムOAuth アプリケーションの作成時に割り当てられたクライアントシークレットを指定します。( コンシューマーシークレット とも呼ばれます。)このシークレットは、カスタムアプリケーションをOAuth 認可サーバーに登録します。
string
""
OAuthClientSecret は、ユーザーがOAuth 経由で認証を行う前に設定する必要があるいくつかの接続パラメータの1つです。詳細は接続の確立を参照してください。
選択したOAuth フローのグラント種別を指定します。 この値は、OAuth カスタムアプリケーション作成時に設定されたグラント種別と同じである必要があります。
string
"CODE"
ほとんどの場合、デフォルトのグラント種別は変更すべきではありません。 最も一般的なOAuth グラント種別とそれぞれのメリット・デメリットについては、https://oauth.net/2/grant-types/ を参照してください。
このセクションでは、本プロバイダーの接続文字列で設定可能なJWT OAuth プロパティの全リストを提供します。
| プロパティ | 説明 |
| OAuthJWTCert | JWT 証明書のストア。 |
| OAuthJWTCertType | JWT 証明書を格納するキーストアの種類。 |
| OAuthJWTCertPassword | OAuth JWT 証明書のパスワード。パスワードを必要とする証明書ストアにアクセスするために使用されます。証明書ストアがパスワードを必要としない場合は、このプロパティを空白のままにします。 |
| OAuthJWTCertSubject | OAuth JWT 証明書のサブジェクトで、ストアで一致する証明書を検索するために使用されます。部分一致と、先頭の証明書を選択するためのワイルドカード '*' をサポートします。 |
JWT 証明書のストア。
string
""
クライアント証明書のための証明書ストア名。
OAuthJWTCertType フィールドは、OAuthJWTCert により指定された証明書ストアの種類を指定します。 ストアがパスワードで保護されている場合は、OAuthJWTCertPassword でパスワードを指定します。
OAuthJWTCert は、OAuthJWTCertSubject フィールドとともにクライアント証明書を指定するために使われます。 OAuthJWTCert に値がある場合で、OAuthJWTCertSubject が設定されている場合は、証明書の検索が始まります。 詳しくは、OAuthJWTCertSubject フィールドを参照してください。
証明書ストアの指定はプラットフォームに依存します。
Windows の共通のユーザとシステム証明書ストアの指定は以下のとおりです。
| MY | 個人証明書と関連付けられた秘密キーを格納している証明書ストア。 |
| CA | 証明機関の証明書。 |
| ROOT | ルート証明書。 |
| SPC | ソフトウェア発行元証明書。 |
Javaでは、証明書ストアは通常、証明書および任意の秘密キーを含むファイルです。
証明書ストアの種類がPFXFile の場合は、このプロパティにファイル名を設定します。 PFXBlob の場合は、このプロパティをPFX ファイルのバイナリコンテンツ(例えば、PKCS12証明書ストア)に設定する必要があります。
JWT 証明書を格納するキーストアの種類。
string
"PEMKEY_BLOB"
このプロパティには次の値の一つを設定できます。
| USER | Windows の場合、現在のユーザーにより所有された証明書ストアであることを指定します。 Note:この種類はJava では利用できません。 |
| MACHINE | Windows の場合、この証明書ストアがシステムストアであることを指定します。 Note:この種類はJava では利用できません。 |
| PFXFILE | この証明書ストアは、証明書を含むPFX(PKCS12)ファイルの名前です。 |
| PFXBLOB | この証明書ストアは、PFX(PKCS12)形式の証明書ストアを表すBase-64でエンコードされた文字列です。 |
| JKSFILE | この証明書ストアは、証明書を含むJava key store(JKS)ファイルの名前です。 Note:この種類はJava のみで利用できます。 |
| JKSBLOB | この証明書ストアは、Java key store(JKS)形式の証明書ストアを表すBase-64でエンコードされた文字列です。 Note:この種類はJava のみで利用できます。 |
| PEMKEY_FILE | この証明書ストアは、秘密キーと任意の証明書を含むPEM でエンコードされたファイルの名前です。 |
| PEMKEY_BLOB | この証明書ストアは、秘密キーと任意の証明書を含むBase-64でエンコードされた文字列です。 |
| PUBLIC_KEY_FILE | この証明書ストアは、PEM またはDER でエンコードされた公開キーの証明書を含むファイルの名前です。 |
| PUBLIC_KEY_BLOB | この証明書ストアは、PEM またはDER でエンコードされた公開キーの証明書を含むBase-64でエンコードされた文字列です。 |
| SSHPUBLIC_KEY_FILE | この証明書ストアは、SSH 公開キーを含むファイルの名前です。 |
| SSHPUBLIC_KEY_BLOB | この証明書ストアは、SSH 公開キーを含むBase-64でエンコードされた文字列です。 |
| P7BFILE | この証明書ストアは、証明書を含むPKCS7 ファイルの名前です。 |
| PPKFILE | この証明書ストアは、PuTTY 秘密キー(PPK)を含むファイルの名前です。 |
| XMLFILE | この証明書ストアは、XML 形式の証明書を含むファイルの名前です。 |
| XMLBLOB | この証明書ストアは、XML 形式の証明書を含む文字列の名前です。 |
| BCFKSFILE | この証明書ストアは、Bouncy Castle キーストアを含むファイルの名前です。 |
| BCFKSBLOB | この証明書ストアは、Bouncy Castle キーストアを含む文字列(Base-64エンコード)です。 |
OAuth JWT 証明書のパスワード。パスワードを必要とする証明書ストアにアクセスするために使用されます。証明書ストアがパスワードを必要としない場合は、このプロパティを空白のままにします。
string
""
このプロパティは、証明書ストアを開くために必要なパスワードを指定します。ただし、ストアの種類がパスワードを必要とする場合に限ります。 パスワードが必要かどうかを判断するには、ご利用の証明書ストアのドキュメントまたは設定を参照してください。
OAuth JWT 証明書のサブジェクトで、ストアで一致する証明書を検索するために使用されます。部分一致と、先頭の証明書を選択するためのワイルドカード '*' をサポートします。
string
"*"
このプロパティの値は、ストアで一致する証明書を検索するために使用されます。検索プロセスは以下のように動作します。
値を '*' に設定すると、ストアの先頭の証明書が自動的に選択されます。 証明書のサブジェクトは識別名フィールドおよび値のカンマ区切りのリストです。 例:CN=www.server.com, OU=test, C=US, [email protected]。一般的なフィールドには以下のものが含まれます。
| フィールド | 説明 |
| CN | 共通名。一般的には、www.server.com のようなホスト名です。 |
| O | 法人名 |
| OU | 法人の部署名 |
| L | 法人の住所(市町村名) |
| S | 法人の住所(都道府県) |
| C | 国名 |
| E | E メールアドレス |
フィールド値にカンマが含まれる場合は、引用符で囲んでください。例:"O=ACME, Inc."。
このセクションでは、本プロバイダーの接続文字列で設定可能なSSL プロパティの全リストを提供します。
| プロパティ | 説明 |
| SSLServerCert | TLS/SSL を使用して接続する際に、サーバーが受け入れ可能な証明書を指定します。 |
TLS/SSL を使用して接続する際に、サーバーが受け入れ可能な証明書を指定します。
string
""
TLS/SSL 接続を使用する場合は、このプロパティを使用して、サーバーが受け入れるTLS/SSL 証明書を指定できます。コンピュータによって信頼されていない他の証明書はすべて拒否されます。
このプロパティは、次のフォームを取ります:
| 説明 | 例 |
| フルPEM 証明書(例では省略されています) | -----BEGIN CERTIFICATE----- MIIChTCCAe4CAQAwDQYJKoZIhv......Qw== -----END CERTIFICATE----- |
| 証明書を保有するローカルファイルへのパス。 | C:\cert.cer |
| 公開鍵(例では省略されています) | -----BEGIN RSA PUBLIC KEY----- MIGfMA0GCSq......AQAB -----END RSA PUBLIC KEY----- |
| MD5 Thumbprint (hex 値はスペースおよびコロン区切り) | ecadbdda5a1529c58a1e9e09828d70e4 |
| SHA1 Thumbprint (hex 値はスペースおよびコロン区切り) | 34a929226ae0819f2ec14b4a3d904f801cbb150d |
これを指定しない場合は、マシンが信用するすべての証明書が受け入れられます。
すべての証明書の受け入れを示すには、'*'を使用します。セキュリティ上の理由から、これはお勧めできません。
このセクションでは、本プロバイダーの接続文字列で設定可能なLogging プロパティの全リストを提供します。
| プロパティ | 説明 |
| Verbosity | ログファイルのVerbosity レベルを指定し、記録される情報の詳細度を制御します。サポートされる値の範囲は1から5までです。 |
ログファイルのVerbosity レベルを指定し、記録される情報の詳細度を制御します。サポートされる値の範囲は1から5までです。
string
"1"
このプロパティは、Cloud がログファイルに含める詳細レベルを定義します。 Verbosity レベルを高くするとログに記録される情報の詳細が増えますが、ログファイルが大きくなり取り込まれるデータが増えるためパフォーマンスが低下する可能性があります。
デフォルトのVerbosity レベルは1で、通常の運用にはこれが推奨されます。 より高いVerbosity レベルは主にデバッグを目的としています。 各レベルの詳細については、ログ を参照してください。
LogModules プロパティと組み合わせることで、Verbosity は特定の情報カテゴリに対するログの詳細度を調整できます。
このセクションでは、本プロバイダーの接続文字列で設定可能なSchema プロパティの全リストを提供します。
| プロパティ | 説明 |
| BrowsableSchemas | レポートされるスキーマを利用可能なすべてのスキーマのサブセットに制限するオプション設定。例えば、 BrowsableSchemas=SchemaA,SchemaB,SchemaC です。 |
レポートされるスキーマを利用可能なすべてのスキーマのサブセットに制限するオプション設定。例えば、 BrowsableSchemas=SchemaA,SchemaB,SchemaC です。
string
""
利用可能なデータベーススキーマをすべてリストすると余分な時間がかかり、パフォーマンスが低下します。 接続文字列にスキーマのリストを指定することで、時間を節約しパフォーマンスを向上させることができます。
このセクションでは、本プロバイダーの接続文字列で設定可能なMiscellaneous プロパティの全リストを提供します。
| プロパティ | 説明 |
| DirectoryRetrievalDepth | Specify how many folders deep you want to get results for Files table. The resources directly in the root are located at depth 0. The resources one folder deeper are located at depth 1 and so on. You can specify the value -1 to get all the data in a drive no matter the depth they're in. |
| MaxRows | 集計やGROUP BY を使用しないクエリで返される最大行数を指定します。 |
| Pagesize | Microsoft Office 365 から返される、1ページあたりの結果の最大数を指定します。この設定は、ほとんどのユースケースに最適化されている、データソースによって設定されたデフォルトのページサイズをオーバーライドします。 |
| PseudoColumns | テーブルカラムとして公開する擬似カラムを指定します。'TableName=ColumnName;TableName=ColumnName' という形式を使用します。デフォルトは空の文字列で、このプロパティを無効にします。 |
| Timeout | provider がタイムアウトエラーを返すまでにサーバーからの応答を待機する最大時間を秒単位で指定します。デフォルトは60秒です。タイムアウトを無効にするには0を設定します。 |
| UseClientSidePaging | Whether or not the CData ADO.NET Provider for Microsoft Office 365 should use client side paging. |
Specify how many folders deep you want to get results for Files table. The resources directly in the root are located at depth 0. The resources one folder deeper are located at depth 1 and so on. You can specify the value -1 to get all the data in a drive no matter the depth they're in.
string
"5"
This property must be set in the connection string or the driver will use a default of DirectoryRetrievalDepth=5.
集計やGROUP BY を使用しないクエリで返される最大行数を指定します。
int
-1
このプロパティは、集計やGROUP BY 句を含まないクエリに対してCloud が返す行数の上限を設定します。 この制限により、クエリがデフォルトで過度に大きな結果セットを返さないようにします。
クエリにLIMIT 句が含まれている場合、クエリで指定された値がMaxRows 設定よりも優先されます。 MaxRows が"-1" に設定されている場合、LIMIT 句が明示的にクエリに含まれていない限り、行の制限は行われません。
このプロパティは、非常に大きなデータセットを返す可能性のあるクエリを実行する際に、パフォーマンスを最適化し過剰なリソース消費を防ぐのに役立ちます。
Microsoft Office 365 から返される、1ページあたりの結果の最大数を指定します。この設定は、ほとんどのユースケースに最適化されている、データソースによって設定されたデフォルトのページサイズをオーバーライドします。
int
300
クエリする特定のオブジェクトやサービスエンドポイントの結果を最適化するために、デフォルトのページサイズを調整したい場合があります。 ページサイズを大きくするとパフォーマンスが向上するかもしれませんが、ページあたりのメモリ消費量が増える可能性もあることに注意してください。
テーブルカラムとして公開する擬似カラムを指定します。'TableName=ColumnName;TableName=ColumnName' という形式を使用します。デフォルトは空の文字列で、このプロパティを無効にします。
string
""
このプロパティを使用すると、Cloud がテーブルカラムとして公開する擬似カラムを定義できます。
個々の擬似カラムを指定するには、以下の形式を使用します。"Table1=Column1;Table1=Column2;Table2=Column3"
すべてのテーブルのすべての擬似カラムを含めるには、次のようにします:"*=*"
provider がタイムアウトエラーを返すまでにサーバーからの応答を待機する最大時間を秒単位で指定します。デフォルトは60秒です。タイムアウトを無効にするには0を設定します。
int
60
このプロパティは、Cloud が操作をキャンセルする前に操作の完了を待機する最大時間を秒単位で制御します。 操作の完了前にタイムアウト時間が経過すると、Cloud は操作をキャンセルして例外をスローします。
タイムアウトは、クエリや操作全体ではなくサーバーとの個々の通信に適用されます。 例えば、各ページング呼び出しがタイムアウト制限内に完了する場合、クエリは60秒を超えて実行を続けることができます。
このプロパティを0に設定するとタイムアウトが無効になり、操作が成功するか、サーバー側のタイムアウト、ネットワークの中断、またはサーバーのリソース制限などの他の条件で失敗するまで無期限に実行されます。 このプロパティは慎重に使用してください。長時間実行される操作がパフォーマンスを低下させたり、応答しなくなる可能性があるためです。
Whether or not the CData ADO.NET Provider for Microsoft Office 365 should use client side paging.
bool
true
Some sources do not support server side paging. In these cases, set UseClientSidePaging to true. Otherwise, leave it as false. Setting UseClientSidePaging to true on a source that already supports paging can cause incomplete results.