CData Python Connector for Microsoft Office 365

Build 26.0.9655

CData Python Connector for Microsoft Office 365

Overview

The CData Python Connector for Microsoft Office 365 allows developers to write Python scripts with connectivity to Microsoft Office 365. The connector wraps the complexity of accessing Microsoft Office 365 data in an interface commonly used by Python connectors to common database systems.

Key Features

  • WHL installation packages that enable installation with "pip install".
  • Supported for Python 3.10 or newer on Windows, Linux, and macOS.
  • Write and execute SQL queries to fetch and update data in Microsoft Office 365.
  • Custom dialect class that enables SQLAlchemy 1.3 and 1.4 to use this connector.

Getting Started

See Getting Started to install the connector to your Python distribution and to create a basic connection to Microsoft Office 365.

Using the Python Connector/Using from Tools

See Using the Connector for examples of executing basic SELECT, INSERT, UPDATE, DELETE, and EXECUTE queries with the module's provided classes.

See Using from Tools to connect Microsoft Office 365 data to tools such as Pandas or Petl.

SQLAlchemy ORM

SQLAlchemy can be leveraged to model the tables in Microsoft Office 365 with mapped classes. See From SQLAlchemy for instructions for configuring the Python connector with SQLAlchemy.

Pandas

Pandas' DataFrames can be used alongside the connector to generate analytical graphics. See From Pandas for a guide.

Schema Discovery

See Schema Discovery to query the provided system tables, which allows users to discover the available tables, views, and stored procedure, alongside additional information about their columns or parameters.

Advanced Features

Advanced Features details additional features supported by the connector, such as defining user defined views, ssl configuration, remoting, caching, firewall/proxy settings, and advanced logging.

SQL Compliance

See SQL Compliance for a syntax reference and code examples outlining the supported SQL.

Data Model

See Data Model for the available database objects. This section also provides more detailed information on querying specific Microsoft Office 365 entities.

Connection String Options

The Connection properties describe the various options that can be used to establish a connection.

CData Python Connector for Microsoft Office 365

Getting Started

Connecting to Microsoft Office 365

For information on the available WHL files for supported environments, and how to install the appropriate file for your Python distribution, see Package Installation.

For information on the module to import, and how to configure the necessary connection properties in a connection string, see Establishing a Connection.

Other available connection properties can be used to configure other aspects of the connector capabilities.

Python Version Support

The CData Python Connector for Microsoft Office 365 can be installed and used in Python 3.10 or newer.

Microsoft Office 365 Version Support

All hosted versions of Microsoft Office 365 are supported via the microsoft Graph API v1.0. Includes information accessible from 365 editions of Exchange/Outlook, Teams, Tasks, and OneDrive.

See Also

  • Using the Connector: Establish connections and query Microsoft Office 365 through Python code.
  • From SQLAlchemy: Use SQLAlchemy to establish a connection with dialect URL, and interact with Microsoft Office 365 data using mapped classes and Sessions.

CData Python Connector for Microsoft Office 365

Package Installation

Dependencies

The Python connectors require that Python 3.10 or newer be installed.

Installation

The CData Python Connector for Microsoft Office 365 is available as a WHL file for Windows, Linux, and Mac. Each connector is built using the Python 3.10 Stable ABI (indicated by the abi3 tag in the filename), so a single wheel supports any Python 3.10 or newer installation — there is no need to match your exact Python minor version. Use the "pip install" command with the appropriate WHL file for your platform.

Windows:

pip install cdata_office365_connector-26.0.9655-cp310-abi3-win_amd64.whl

Linux:

pip install cdata_office365_connector-26.0.9655-cp310-abi3-linux_x86_64.whl

macOS:

pip install cdata_office365_connector-26.0.9655-cp310-abi3-macosx_12_0_arm64.whl

The macOS wheel supports arm64 (Apple Silicon) architectures only on macOS 12 and newer.

Regardless of the environment, certain distributions might require that the "pip3 install" command be used instead, to differentiate from a Python 2 distribution that might exist already. After installation, confirm whether the connector is successfully installed by running the "pip list" command. If "cdata_office365_connector" is present in the list output by the command, then the installation was successful.

Upgrading

When upgrading, "pip install" does not automatically clean up old JRE files. To avoid leftover files that could cause JVM errors, uninstall the previous version before installing the new one.

Licensing

After the installation is complete, a separate step is needed to activate a license for the connector. Among the CData assets in the distribution's site packages, there is an install-license tool that activates this license. From within the distribution's site-packages folder, after navigating to the "cdata/installlic_office365" folder, simply use a command like the below to activate the license. Omitting the <key> argument activates a trial license:

  • Windows:
    ./install-license.exe <key>
  • Linux / Mac:
    ./install-license.sh <key>

Sometimes, file access issues may cause pip to install the connector in a fallback file path that is not the python distribution's main or primary site-packages location. This can make it difficult to find where the connector was installed, and from there, the license activator. In that event, this python script below will print out the full file path of the connector's native file. This file will be stored in the mentioned cdata folder, from which the installlic_office365 folder is trivial to find:

import os
import cdata.office365
path = os.path.abspath(cdata.office365.__file__)
print(path)

Uninstallation

If the connector needs to be uninstalled for any reason, do so by running the pip uninstall command, as in the example below:

pip uninstall cdata-office365-connector

CData Python Connector for Microsoft Office 365

Establishing a Connection

The objects available within our connector are accessible from the "cdata.office365" module. To use the module's objects directly:

  1. Import the module as follows:
    import cdata.office365 as mod
  2. To establish a connection string, call the connect() method from the connector object using an appropriate connection string, such as:
    mod.connect("InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;")

Authenticating to Microsoft Office 365

Microsoft Office 365 uses the OAuth authentication standard. To authenticate using OAuth, you will need to create an app to obtain the OAuthClientId, OAuthClientSecret, and CallbackURL connection properties.

Entra ID (Azure AD)

Note: Microsoft has rebranded Azure AD as Entra ID. In topics that require the user to interact with the Entra ID Admin site, we use the same names Microsoft does. However, there are still CData connection properties whose names or values reference "Azure AD".

Microsoft Entra ID is a multi-tenant, cloud-based identity and access management platform. It supports OAuth-based authentication flows that enable the driver to access Microsoft Office 365 endpoints securely.

Authentication to Entra ID via a web application always requires that you first create and register a custom OAuth application. This enables your application to define its own redirect URI, manage credential scope, and comply with organization-specific security policies.

For full instructions on how to create and register a custom OAuth application, see Creating an Entra ID (Azure AD) Application.

After setting AuthScheme to AzureAD, the steps to authenticate vary, depending on the environment. For details on how to connect from desktop applications, web-based workflows, or headless systems, see the following sections.

Desktop Applications

You can authenticate from a desktop application using either the driver's embedded OAuth application or a custom OAuth application registered in Microsoft Entra ID.

Option 1: Use the Embedded OAuth Application

This is a pre-registered application, included with the driver. It simplifies setup and eliminates the need to register your own credentials and is ideal for development environments, single-user tools, or any setup where quick and easy authentication is preferred.

Set the following connection properties:

  • AuthScheme: AzureAD
  • InitiateOAuth:
    • GETANDREFRESH – Use for the initial login. Launches the login page and saves tokens.
    • REFRESH – Use this setting when you have already obtained valid access and refresh tokens. Reuses stored tokens without prompting the user again.

When you connect, the driver opens the Microsoft Entra sign-in page in your default browser. After signing in and granting access, the driver retrieves the access and refresh tokens and saves them to the path specified by OAuthSettingsLocation.

Option 2: Use a Custom OAuth Application

If your organization requires more control, such as managing security policies, redirect URIs, or application branding, you can instead register a custom OAuth application in Microsoft Entra ID and provide its values during connection.

During registration, record the following values:

  • OAuthClientId: The client Id that was generated when you registered your custom OAuth application.
  • OAuthClientSecret: The client secret that was that was generated when you registered your custom OAuth application.
  • CallbackURL: A redirect URI you defined during application registration.

For full instructions on how to register a custom OAuth application and configure redirect URIs, see Creating an Entra ID (Azure AD) Application.

Set the following connection properties:

  • AuthScheme: AzureAD
  • InitiateOAuth:
    • GETANDREFRESH – Use for the initial login. Launches the login page and saves tokens.
    • REFRESH – Use this setting when you have already obtained valid access and refresh tokens. Reuses stored tokens without prompting the user again.
  • OAuthClientId: The client Id that was generated when you registered your custom OAuth application.
  • OAuthClientSecret: The client secret that was generated when you registered your custom OAuth application.
  • CallbackURL: A redirect URI you defined during application registration.

After authentication, tokens are saved to OAuthSettingsLocation. These values persist across sessions and are used to automatically refresh the access token when it expires, so you don't need to log in again on future connections.

Web Applications

To authenticate from a web application, you must register a custom OAuth application in Microsoft Entra ID (formerly Azure Active Directory). Embedded OAuth apps are not supported in this context because web-based flows require a registered redirect URI and centralized credential management.

This approach is designed for hosted, multi-user environments where access must be delegated through a secure, standards-compliant OAuth workflow. It gives your organization control over the OAuth client, redirect URI, branding, and permissions scope.

Before you begin: Register a custom OAuth application in the Azure portal. During registration, collect the following values:

  • OAuthClientId: The client Id that was generated when you registered your custom OAuth application.
  • OAuthClientSecret: The client secret that was generated when you registered your custom OAuth application.
  • CallbackURL: A redirect URI you defined during application registration.

For full instructions on how to register a custom OAuth application and configure redirect URIs, see Creating an Entra ID (Azure AD) Application.

To authenticate using AzureAD in a web application, configure the following connection properties:

  • AuthScheme: AzureAD
  • InitiateOAuth: OFF – Disables automatic login prompts.
  • OAuthClientId: The client Id that was generated when you registered your custom OAuth application.
  • OAuthClientSecret: The client secret that was generated when you registered your custom OAuth application.
  • CallbackURL: A redirect URI you defined during application registration.

Because web applications typically manage OAuth flows manually on the server-side, InitiateOAuth must be set to OFF. This allows you to explicitly control when and how tokens are retrieved and exchanged using stored procedures.

After configuring these properties, follow the steps below to obtain and exchange OAuth tokens:

  1. Call the GetOAuthAuthorizationURL stored procedure:
    • CallbackURL: Set to your registered redirect URI
  2. Open the returned URL in a browser. Sign in with a Microsoft Entra ID account and grant access.
  3. After signing in, you are redirected to your CallbackURL with a code parameter in the query string.
  4. Extract the code and pass it to the GetOAuthAccessToken stored procedure:
    • AuthMode: WEB
    • Verifier: The authorization code from the CallbackURL
  5. The procedure returns:
    • OAuthAccessToken: Used for authentication.
    • OAuthRefreshToken: Used to refresh the access token.
    • ExpiresIn: The lifetime of the access token in seconds.

To enable automatic token refresh, configure the following connection properties:

When InitiateOAuth is set to REFRESH, the driver uses the provided refresh token to request a new access token automatically.

After a successful connection, the driver saves the updated access and refresh tokens to the file specified by OAuthSettingsLocation.

You only need to repeat the full OAuth authorization flow if the refresh token expires, is revoked, or becomes invalid.

For more background on OAuth flows in Microsoft Entra ID, see Microsoft Entra Authentication Overview.

Headless Machines

Headless environments like CI/CD pipelines, background services, or server-based integrations do not have an interactive browser. To authenticate using AzureAD, you must complete the OAuth flow on a separate device with a browser and transfer the authentication result to the headless system.

Setup options:

  • Obtain and exchange a verifier code
    • Use another device to sign in and retrieve a verifier code, which the headless system uses to request tokens.
  • Transfer an OAuth settings file
    • Authenticate on another device, then copy the stored token file to the headless environment.

Using a Verifier Code

  1. On a device with a browser:
    • If using a custom OAuth app, set the following properties:
      • InitiateOAuth: OFF
      • OAuthClientId: The client Id that was generated when you registered your custom OAuth application.
      • OAuthClientSecret: The client secret that was generated when you registered your custom OAuth application.
    • Call the GetOAuthAuthorizationURL stored procedure to generate a sign-in URL.
    • Open the returned URL in a browser. Sign in and grant permissions to the driver. You are redirected to the callback URL, which contains the verifier code.
    • After signing in, save the value of the code parameter from the redirect URL. You will use this later to set the OAuthVerifier connection property.
  2. On the headless machine:
    • Set the following properties:
    • After tokens are saved, reuse them by setting:
      • InitiateOAuth: REFRESH
      • OAuthSettingsLocation: Make sure this location grants read and write permissions to the driver to enable the automatic refreshing of the access token.
      • For custom applications:
        • OAuthClientId: The client Id that was generated when you registered your custom OAuth application.
        • OAuthClientSecret: The client secret that was generated when you registered your custom OAuth application.

Transferring OAuth Settings

  1. On a device with a browser:
    • Connect using the instructions in the Desktop Applications section.
    • After connecting, tokens are saved to the file path in OAuthSettingsLocation. The default filename is OAuthSettings.txt.

  2. On the headless machine:
    • Copy the OAuth settings file to the machine.
    • Set the following properties:
      • AuthScheme: AzureAD
      • InitiateOAuth: REFRESH
      • OAuthSettingsLocation: Make sure this location grants read and write permissions to the driver to enable the automatic refreshing of the access token.
      • For custom applications:
        • OAuthClientId: The client Id that was generated when you registered your custom OAuth application.
        • OAuthClientSecret: The client secret that was generated when you registered your custom OAuth application.

After setup, the driver uses the stored tokens to refresh the access token automatically, no browser or manual login is required.

Azure Service Principal

Note: Microsoft has rebranded Azure AD as Entra ID. In topics that require the user to interact with the Entra ID Admin site, we use the same names Microsoft does. However, there are still CData connection properties whose names or values reference "Azure AD".

Azure Service Principal is role-based application-based authentication. This means that authentication is done per application, rather than per user. All tasks taken on by the application are executed without a default user context, but based on the assigned roles. The application access to the resources is controlled through the assigned roles' permissions.

For information about how to set up Azure Service Principal authentication, see Creating a Service Principal App in Entra ID (Azure AD).

Managed Service Identity (MSI)

If you are running Microsoft Office 365 on an Azure VM and want to automatically obtain Managed Service Identity (MSI) credentials to connect, set AuthScheme to AzureMSI.

User-Managed Identities

To obtain a token for a managed identity, use the OAuthClientId property to specify the managed identity's client_id.

If your VM has multiple user-assigned managed identities, you must also specify OAuthClientId.

CData Python Connector for Microsoft Office 365

Configuring JNI

Java Native Interface (JNI) is a standard programming interface for writing Java native methods and embedding the Java virtual machine into native applications.

The connector leverages the JNI for improved performance on Mac and Linux.

Configure the Config INI File

The Linux and Mac editions of the Microsoft Office 365 python connector are configured with an ini file. This file is used to set several parameters, including JNI behavior. This file is to be located in:

{path_to_distribution_site-packages}/cdata/config.ini

Ensure that any configuration properties you set in the ini file fall under the following section name (adjust the 311 number if you are using an different python version from 3.11):

  • For Linux:
    [office365.cpython-311-x86_64-linux-gnu.so]
  • For Mac:
    [office365.cpython-311-darwin.so]

Configure the JNI connector's behavior by editing the properties in the connector's config.ini file. The connector can be configured as follows:

  • LOGFILE: Set this the same way as the CDATA_LOGFILE envrionment variable below.
  • JAVA_HOME: Configure the path to the JVM library location used to launch the JVM.
  • CLASS_PATH: Use a colon-separated list to configure the paths to the third-party jar libraries.

Configure Environment Variables

Additionally, set the following environment variables:

  • CDATA_JAVA_HOME: Configure the path to the JVM library location used to launch the JVM.
  • CDATA_JVM_OPTIONS: Place JVM options here.
  • CDATA_LOGFILE: Set this in the following scheme: <SCHEME>://<TAG>[|<LEVEL>]

    • SCHEME: The options are STDOUT, FILE.
      • STDOUT: Both the native wrapper and odbc core log into stdout. The Logfile and Verbosity properties can override the behavior of ODBC core.
      • FILE: The native wrapper logs into <FILENAME> while the odbc core logs into <FILENAME>.driver.log. The Logfile and Verbosity properties can override the behavior of ODBC core.
    • TAG
      • For STDOUT, set this to 1. For FILE, set this to the filename.
    • LEVEL
      • Set to one of: FATAL | ERROR | WARNING | INFO | DEBUG

The following are some examples of this syntax:

  • STDOUT://1|DEBUG
  • FILE:///tmp/my_py.log|DEBUG

Custom Logger

The Python connector supports a custom logging mechanism for redirecting log output to any destination, such as a cloud storage service or logging framework. Use setCustomLoggerFactory() to register a factory function that creates a logger instance for each connection.

The factory function receives the context string from the Logfile connection property (the portion after CUSTOM://) and must return an object with a writeLog(verbosity, message) method.

To enable custom logging:

  1. Call setCustomLoggerFactory() with your factory function before opening connections.
  2. Set Logfile to CUSTOM:// followed by a context string to identify the connection.
  3. Set Verbosity to the desired log level.

The following example demonstrates a custom logger factory that creates a separate logger instance per connection:

import cdata.office365 as mod
import time

class MyLogger:
    def __init__(self, loggerId):
        self.loggerId = loggerId
    def writeLog(self, verbosity, message):
        print("[MyLogger " + self.loggerId + "] " + message)

def createLogger(context):
    return MyLogger(context[len("MyLoggerId="):])

mod.setCustomLoggerFactory(createLogger)

conn1 = mod.connect("...;Logfile=CUSTOM://MyLoggerId=1;Verbosity=2;")
# do something with conn1
time.sleep(1)  # Wait for logs to flush from conn1

conn2 = mod.connect("...;Logfile=CUSTOM://MyLoggerId=2;Verbosity=2;")
# do something with conn2
time.sleep(1)  # Wait for logs to flush from conn2

CData Python Connector for Microsoft Office 365

Creating an Entra ID (Azure AD) Application

Creating an Entra ID (Azure AD) Application

Note: Microsoft has rebranded Azure AD as Entra ID. In topics that require the user to interact with the Entra ID Admin site, we use the same names Microsoft does. However, there are still CData connection properties whose names or values reference "Azure AD".

Microsoft Office 365 supports OAuth-based authentication using Microsoft Entra ID. If you will connect via a web application and want to authenticate via Entra ID, you must first register a custom OAuth application in the Entra Admin Center, as described below.

If you will connect via a desktop application or headless machine, you can authenticate using Microsoft Office 365's built-in embedded application credentials, which use CData branding. However, custom OAuth applications are also compatible with desktop and headless authentication flows, and may be preferable for production deployments or environments requiring strict policy control.

Registering the Application

To register an OAuth application in Microsoft Entra ID, follow these steps:

  1. Go to https://portal.azure.com.
  2. In the left-hand navigation pane, select Microsoft Entra ID > App registrations.
  3. Click New registration.
  4. Enter a name for the application.
  5. Specify the types of accounts this application should support:
    • For private-use applications, select Accounts in this organization directory only.
    • For distributed applications, select one of the multi-tenant options.

    Note: If you select Accounts in this organizational directory only, when you connect with CData Python Connector for Microsoft Office 365, you must set AzureTenant to the tenant's ID (either GUID or verified domain). Otherwise, authentication will fail.

  6. Set Select a platform to Web, and set the redirect URI to http://localhost:33333 (default), or use another URI appropriate for your deployment. When using a custom redirect URI set a CallbackURL connection property; in those cases, set it to match this URI exactly.
  7. Click Register. The application management screen opens. Record these values for later use:
  8. Go to Certificates & Secrets. Click New Client Secret, set the desired expiration, and save the generated value. This value will only be shown once — record it to use with OAuthClientSecret.

  9. Select the Microsoft Graph API and then select the permissions your app will seek.
  10. To confirm, click Add permissions.

CData Python Connector for Microsoft Office 365

Creating a Service Principal App in Entra ID (Azure AD)

Creating a Service Principal App in Entra ID (Azure AD)

Note: Microsoft has rebranded Azure AD as Entra ID. In topics that require the user to interact with the Entra ID Admin site, we use the same names Microsoft does. However, there are still CData connection properties whose names or values reference "Azure AD".

Microsoft Office 365 supports Service Principal-based authentication, which is role-based. This means that the Service Principal's permissions are determined by the roles assigned to it. The roles specify what resources the Service Principal can access and which operations it can perform.

If you want to use a Service Principal to authenticate to Microsoft Office 365, you must create a custom application in Microsoft Entra ID.

To enable Service Principal authentication:

  • Confirm that you have permission to register applications and assign roles in your tenant.
  • Register a new application and configure credentials and permissions in the Entra Admin Center.

Registering the Application

  1. Go to https://portal.azure.com.
  2. In the left-hand navigation pane, select Microsoft Entra ID > App registrations.
  3. Click New registration.
  4. Enter a name for the application.
  5. Select the desired tenant setup. Since this custom application is for Service Principal use, choose Any Microsoft Entra ID tenant – Multitenant.

  6. Click Register. The application management screen opens. Note the value in Application (client) ID as the OAuthClientId and the Directory (tenant) ID as the AzureTenant

  7. Select the Microsoft Graph API and then select the permissions your app will seek.
  8. Navigate to Certificates & Secrets and define the application authentication type. Two types of authentication are available: certificate (recommended) or client secret

    • For certificate authentication: In Certificates & Secrets, select Upload certificate, then upload the certificate from your local machine. For more information on creating a self-signed certificate, see Create a self-signed certificate
    • For creating a new client secret: In Certificates & Secrets, select New Client Secret for the application and specify its duration. After the client secret is saved, Microsoft Office 365 displays the key value. This value is displayed only once, so be sure to record it for future use. Use this value for the OAuthClientSecret

  9. Navigate to Authentication and select the Access tokens option.
  10. Save your changes.
  11. If you specified permissions that require admin consent (such as the Application Permissions), you can grant them from the current tenant on the API Permissions page.

Granting Admin Consent

Some custom applications require administrative permissions to operate within a Microsoft Entra ID tenant. This is especially true for applications that use Application permissions, which allow the app to run without a signed-in user. Admin consent can be granted when creating a new application, by adding relevant permissions marked as "Admin Consent Required". Admin consent is also required to use Client Credentials in the authentication flow.

These permissions must be granted by an admin. To grant admin consent:

  1. Log in to https://portal.azure.com with an administrator account.
  2. Navigate to Microsoft Entra ID > App registrations and select your registered application.
  3. Navigate to API permissions.
  4. Review the permissions listed under Application permissions. Ensure the necessary API scopes are included for your use case.
  5. Click Grant admin consent to approve the requested permissions.
This gives your application permissions on the tenant under which it was created.

Consent for Client Credentials

OAuth supports the use of client credentials to authenticate. In a client credentials authentication flow, credentials are created for the authenticating application itself. The authentication flow acts just like the usual auth flow, except that there is no prompt for an associated user to provide credentials. All tasks accepted by the application are executed outside of the context of a default user.

Note: Since the embedded OAuth credentials authenticate on a per-user basis, you cannot use them in a client authentication flow. You must always create a custom OAuth application to use client credentials.

  1. Log in to https://portal.azure.com
  2. Create a custom OAuth application, as described above.
  3. Navigate to App Registrations.
  4. Find the application you just created, and open API Permissions.
  5. Select the Microsoft Graph permissions. There are two distinct sets of permissions: Delegated and Application.
  6. For use with Service Principal, specify Application permissions.
  7. Select any additional permissions you require for your integration.

CData Python Connector for Microsoft Office 365

Administrative Tasks

The CData Python Connector for Microsoft Office 365 can be used to perform administrative tasks. This can be done by specifying the UserId column to execute CUD operations.

The UserId Column

Many tables expose a special UserId column. This is designed to be used by an administrator to modify records on another user's account. If you are not an administrator or do not desire this behavior, do not specify the UserId when performing an INSERT / UPDATE / DELETE operation. For instance, executing the following will insert a contact for another user:

INSERT INTO Contacts (displayName, CompanyName, UserId) VALUES ('Bill', 'Bob Co', '12345')

The above request will have the overall effect of attempting to add a contact under the resource at /users/12345/contacts. When UserId is not specified, the resources affected will instead be modified under /users/me/contacts. In general if you are not an administrator, you can only affect or view records under /users/me, so it is not recommended to set UserId when you are not an admin.

CData Python Connector for Microsoft Office 365

Changelog

General Changes

DateVersionSourceCategoryTypeDescription
2026-06-0326.0.9650Microsoft Office 365Data ModelAdded
  • Added the CopilotRetrieval stored procedure.
2026-05-2726.0.9643GeneralConnectionRemoved
  • Removed the deprecated ReplaceInvalidTypesWithNull connection property. Use the ReplaceInvalidValuesWithNull property instead.
2026-05-2226.0.9638PythonRemoved
  • Remove support for Intel x64 architecture on macOS
2026-05-0726.0.9623GeneralData ModelAdded
  • Added the ColumnCapabilities column to the sys_tablecolumns system table. This column is a bit mask denoting the column's write capabilities.
2026-05-0726.0.9623PythonChanged
  • Updated embedded JRE to jre-17.0.19+10 (Linux x64 / MacOs x64).
2026-04-1526.0.9601GeneralQuery ExecChanged
  • String comparisons using GREATER, LESS, and CONTAINS operators are now case-insensitive by default.
2026-04-1026.0.9596Microsoft Office 365Data ModelAdded
  • Added the Buildings, Floors, Desks, Rooms, Workspaces, and Places tables with SELECT support.
2026-04-0826.0.9594Microsoft Office 365MetadataAdded
  • Added a new table, ContactFolders, that represents the folders that contain Contacts.
  • Added functionality to the Contacts table that enables the user to refine their query further by specifying a ContactFolder.
2026-04-0826.0.9594Microsoft Office 365Data ModelChanged
  • The Contacts table now returns contacts that were manually created in custom contact folders (via Outlook web UI). Previously, query results only contained contacts originating from the default contacts folder.
2026-04-0726.0.9593Microsoft Office 365Data ModelAdded
  • Added the MailFolders and CalendarGroups views.
  • In the Events table, added the CalendarId and CalendarGroupId columns.
2026-04-0126.0.9587Microsoft Office 365Data ModelChanged
  • When IncludeLinkedColumns is enabled, additional "Linked" columns are exposed. Previously, these were described as foreign key references, but they represent entire related rows. These columns no longer return reference values.
2026-03-2725.0.9582Microsoft Office 365Data ModelAdded
  • Added a new table, MailFolders. You can use this table to search for specific messages or to create folders to store messages.
  • Added five new stored procedures:
    • DismissEventReminder
    • DeleteAttachment
    • ReplyToMessage
    • RespondToEvent
    • SnoozeEventReminder
2026-03-2725.0.9582Microsoft Office 365Data ModelChanged
  • When IncludeLinkedColumns is enabled, additional "linked" columns are exposed. Previously, these were described as foreign key references, but the represent entire related rows. These columns no longer return reference values.
2026-01-1325.0.9509GeneralAdded
  • Added support for the REGEXP_REPLACE() string function.
2026-01-0525.0.9501Microsoft Office 365Added
  • Added the following stored procedures: DismessEventReminder, DeleteAttachment, ReplyToMessage, RespondToEvent.
  • Added the CalendarGroups table.
2025-12-2125.0.9486PythonAdded
  • Added support for custom loggers in Python connectors on Linux and macOS.
2025-12-0525.0.9470GeneralAdded
  • Added support for the INSERT INTO SELECT statement, with driver-side execution for providers that do not support the operation natively.
2025-10-3025.0.9434PythonChanged
  • Updated embedded JRE to jre-17.0.17+10 (Linux x64 / MacOs x64).
2025-10-0625.0.9410GeneralAdded
  • Support for parsing datetime formats using ".S" and ",S" for milliseconds and nanoseconds.
2025-09-1225.0.9386GeneralAdded
  • Added the IsInsertable, IsUpdateable, and IsDeleteable columns to the sys_tables table.
2025-09-1025.0.9384GeneralChanged
  • All columns in statically defined Views are now reported as read-only.
2025-09-0525.0.9379Microsoft Office 365Added
  • Added 53 columns to the EventAttachments view.
  • Added 37 columns to the MessageAttachments view.
2025-09-0325.0.9377GeneralChanged
  • Corrected the behavior when IN criteria with NULL values are used in the projection part. It now returns NULL instead of 0. For example, "NULL IN (1,2)" returns "NULL".
2025-09-0125.0.9375GeneralAdded
  • Added support for using the CAST function with infinity values. This function can cast "inf" and "-inf" to DOUBLE, FLOAT, or REAL.
2025-08-2125.0.9364GeneralChanged
  • Report behavior change:
    • Fixed inconsistent string value comparisons in non-table queries.
    • For example, "SELECT 'A' = 'a'" previously returned false, but it now returns true.
2025-08-1325.0.9356GeneralChanged
  • Changed the maximum number of pages held in memory from 15 to 5 for the page providers to decrease heap usage.
2025-07-1825.0.9330Microsoft Office 365Removed
  • Removed the OAuthGrantType property. The grant type is now set implicitly through the 'AuthScheme' property. For example, you can use the 'OAuthPassword' AuthScheme instead of AuthScheme=OAuth with OAuthGrantType=Password.
2025-07-0725.0.9319PythonRemoved
  • Removed the 32-bit version of Windows Python.
2025-07-0425.0.9316Microsoft Office 365Removed
  • Removed the UseIdURL connection property because it has been deprecated.
2025-07-0225.0.9314PythonRemoved
  • Removed support for Python 3.9.
2025-06-2525.0.9307GeneralRemoved
  • Removed the "ADLS Gen 1" value from the ConnectionType property.
2025-06-2525.0.9307PythonAdded
  • Added support for Python 3.13 in Windows, Linux, and Mac editions.
2025-06-2525.0.9307PythonRemoved
  • Removed support for Python 3.8 as it is no longer supported.
2025-06-2025.0.9302GeneralAdded
  • Created the following functions:
    • TEXT_ENCODE: encodes a string into a different charset (UTF8 → UTF7 and returns a binary array as the result).
    • TEXT_DECODE: takes a binary array and decodes it back into a string when provided the charset.
    • BASE64_ENCODE: takes a binary array and encodes it as a base64 string (varchar).
    • BASE64_DECODE: takes a base 64-encoded string and decodes it into a binary array.
2025-06-1825.0.9300GeneralChanged
  • The internal code for exception handling has been refactored. Exception messages returned during certain error conditions may now have different wording or formatting.
2025-05-2725.0.9278GeneralRemoved
  • Removed the "Proprietary" enum option from ProxyAuthscheme.
2025-05-1225.0.9263PythonChanged
  • Updated embedded JRE to jre-17.0.15+6 (Linux x64 / MacOS x64) and jre-17.0.15+6 (MacOS aarch64).
2025-03-2725.0.9217Microsoft Office 365Added
  • In tables/views whose corresponding OData entity is marked with hasStream:true in its API metadata responses, the "MediaReadLink" column is added to the table/view metadata. When present, this column displays the link to the OData entity's media stream.
2025-02-1524.0.9177GeneralAdded
  • Added support for converting unsigned integer types to the nearest signed data type that has enough precision to hold the unsigned value.This is done for JDBC only because it does not have support for unsigned data types.
2025-01-2724.0.9158Microsoft Office 365Added
  • Added support for OAuth authentication to the Tableau connector for Microsoft Office 365.
2024-11-2724.0.9097GeneralAdded
  • Added ThreadId to LogModule output. Logfile lines now include the Thread ID associated with the action being performed.
2024-10-0924.0.9048Microsoft Office 365Added
  • Added the AddAttachments and DeleteAttachment stored procedures.
2024-06-0524.0.8922PythonAdded
  • Added support for Python 3.12.
2024-05-0924.0.8895GeneralChanged
  • The ROUND function previously did not accept negative precision values. That feature has now been restored.
2024-03-1523.0.8840GeneralAdded
  • Created a new SQL function called STRING_COMPARE that provides java's String.compare() ability to SQL queries. Returns a number representative of the compared value of two strings
2023-12-1423.0.8748Microsoft Office 365Added
  • Added Id as a primary key column in the Tasks table.
  • Added Id as a primary key column in the Plans table.
2023-12-1423.0.8748Microsoft Office 365Changed
  • Changed the Etag column to a non-primary key column since the API allows duplicate values in the Tasks table.
  • Changed the GroupId column to a non-primary key column since the API allows duplicate values in the Plans table.
2023-11-2923.0.8733GeneralChanged
  • The ROUND function doesn't accept the negative precision values anymore.
2023-11-2923.0.8733GeneralChanged
  • The returning types of the FDMonth, FDQuarter, FDWeek, LDMonth, LDQuarter, LDWeek functions are changed from Timestamp to Date.
  • The return type of the ABS function will be consistent with the parameter value type.
2023-11-2823.0.8732GeneralAdded
  • Added the HMACSHA256 formatter to allow for secrets to be decoded if it is in base64 format
2023-10-1123.0.8684Microsoft Office 365Added
  • Added a new Stored procedure FetchAdditionalUserFields, which will have all the column supported by Users for a particular User.
2023-10-1123.0.8684Microsoft Office 365Changed
  • Updated the Users table, will include only the fields returned by default in the Users endpoint and selected columns are returned by specifying them in $select.
2023-08-2923.0.8641PythonAdded
  • Added support for SQLAlchemy 2.0.
2023-08-0423.0.8616Microsoft Office 365Added
  • Added AzureServicePrincipalCert as an AuthScheme option to enable authentication with a Certificate.
2023-06-2023.0.8571GeneralAdded
  • Added the new sys_lastresultinfo system table.
2023-05-1923.0.8539PythonAdded
  • Added support for Python 3.11 on Windows, Linux and Mac.
2023-05-1623.0.8536PythonRemoved
  • Removed support for Python 3.7 on Windows and Linux
2023-04-2523.0.8515GeneralRemoved
  • Removed support for the SELECT INTO CSV statement. The core code doesn't support it anymore.
2023-02-2822.0.8459Microsoft Office 365Added
  • Added UserId column to DownloadAttachment stored procedure to allow admin user to impersonate as different users.
2022-12-1422.0.8383GeneralChanged
  • Added the Default column to the sys_procedureparameters table.
2022-11-1522.0.8354PythonChanged
  • Updated embedded JRE to jre8u345-b01(Linux x64 / MacOS x64) and jre-17.0.5+8(MacOS aarch64).
2022-10-1122.0.8319Microsoft Office 365Added
  • Added the FileStream input attribute to support output streams on the CreateSchema stored procedure.
  • Added the FileData output attribute to print the response on the CreateSchema stored procedure.
2022-09-3022.0.8308GeneralChanged
  • Added the IsPath column to the sys_procedureparameters table.
2022-09-0122.0.8279Microsoft Office 365Added
  • Added the FileStream attribute to support output streams in the DownloadAttachment, DownloadFile, DownloadEmail and stored procedures.
2022-08-1922.0.8266Microsoft Office 365Added
  • Added the FileData output parameter and Encoding input parameter to print the response in the DownloadAttachment, DownloadFile, DownloadEmail stored procedures.
  • Added the ContentStream input parameter to add stream input in the UploadAttachment stored procedure.
2022-05-2422.0.8179Microsoft Office 365Changed
  • Changed provider name to Microsoft Office 365.
2022-05-1822.0.8173PythonAdded
  • Added support for Python 3.10 on Windows, Linux, and Mac
  • Added support for Python 3.9 on Mac
  • Added support for Mac M1
2022-05-1822.0.8173PythonRemoved
  • Removed support for Python 3.6 on Windows and Linux
2022-01-1021.0.8045Microsoft Office 365Changed
  • Added the Scope connection property. This may be used to configure the scope submitted during an OAuth authorization request.
2021-10-0621.0.7949Microsoft Office 365Changed
  • Corrected the Data Type of columns recurrence_range_endDate and recurrence_range_startDate for the tables Events, CalendarView and EventOccurrences. These are now changed to DATE instead of TIMESTAMP.
2021-09-0221.0.7915GeneralAdded
  • Added support for the STRING_SPLIT table-valued function in the CROSS APPLY clause.
2021-08-0721.0.7889GeneralChanged
  • Added the KeySeq column to the sys_foreignkeys table.
2021-08-0621.0.7888GeneralChanged
  • Added the new sys_primarykeys system table.
2021-07-2321.0.7874GeneralChanged
  • Updated the Literal Function Names for relative date/datetime functions. Previously, relative date/datetime functions resolved to a different value when used in the projection as opposed to the predicate. For example: SELECT LAST_MONTH() AS lm, Col FROM Table WHERE Col > LAST_MONTH(). Formerly, the two LAST_MONTH() methods would resolve to different datetimes. Now, they will match.
  • As a replacement for the previous behavior, the relative date/datetime functions in the criteria may have an 'L' appended to them. For example: WHERE col > L_LAST_MONTH(). This will continue to resolve to the same values that were previously calculated in the criteria. Note that the "L_" prefix will only work in the predicate - it not available for the projection.
2021-07-2221.0.7873Microsoft Office 365Added
  • Added support for the GroupMembers table.
2021-07-0221.0.7853Microsoft Office 365Added
  • Added the ForwardEvent and CancelEvent stored procedures.
2021-06-0521.0.7826Microsoft Office 365Added
  • Added support for the AzureServicePrinciple authentication scheme.
  • Added support to authenticate submitting JWT certs instead of the OAuthClientSecret for the AzureServicePrinciple and AzureAD authentication schemes.
2021-04-2521.0.7785GeneralAdded
  • Added support for handling client side formulas during insert / update. For example: UPDATE Table SET Col1 = CONCAT(Col1, " - ", Col2) WHERE Col2 LIKE 'A%'
2021-04-2321.0.7783GeneralChanged
  • Updated how display sizes are determined for varchar primary key and foreign key columns so they will match the reported length of the column.
2021-04-1621.0.7776GeneralAdded
  • Non-conditional updates between two columns is now available to all drivers. For example: UPDATE Table SET Col1=Col2
2021-04-1621.0.7776GeneralChanged
  • Reduced the length to 255 for varchar primary key and foreign key columns.
2021-04-1621.0.7776GeneralChanged
  • Updated implicit and metadata caching to improve performance and support for multiple connections. Old metadata caches are not compatible - you need to generate new metadata caches if you are currently using CacheMetadata.
2021-04-1621.0.7776GeneralChanged
  • Updated index naming convention to avoid duplicates.

CData Python Connector for Microsoft Office 365

Using the Connector

This section provides a walk-through for writing Microsoft Office 365 data access code in Python script.

For more information on the available data source entities and how to query them with SQL, see Data Model. For the SQL syntax, see SQL Compliance.

Connecting from Code

For information on how to deploy the connector and configure the connection to Microsoft Office 365, see Package Installation and Establishing a Connection.

For information on how to connect with the office365.connector module and its related classes, see Connecting.

Executing SQL

The connection's cursor object is used to directly execute SQL queries. For information on how to execute SELECT statements and process the returned result sets, see Querying Data. For information on to modify the data in Microsoft Office 365 with INSERT, UPDATE, and DELETE statements, see Modifying Data .

Executing Stored Procedures

You can call stored procedures by using the EXECUTE statement. For further information, see Calling Stored Procedures.

CData Python Connector for Microsoft Office 365

Connecting

Connecting with the cdata.office365 Module:

The connector's module is used directly to establish a connection with the data source. It does this by using a connection string as its argument. For example:
import cdata.office365 as mod
conn = mod.connect("InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;")

Once the connection is created, you can use it to execute subsequent SQL queries.

CData Python Connector for Microsoft Office 365

Querying Data

After connecting as described in Connecting, you can use the open connection to execute SQL statements.

Executing Queries

To execute SQL statements that return data, use the execute() method. Once a query is executed, the result set is fetched from the cursor. This result set can then be iterated over to process the records individually.

For example:

cur = conn.execute("SELECT Id, location_displayName FROM Events")
rs = cur.fetchall()
for row in rs:
	print(row)

Parameterized Queries

Various Python collections, such as arrays and tuples, can act as additional arguments for the execute() method. This enables you to parameterize the queries executed and help to prevent SQL Injection.

For example:

cmd = "SELECT Id, location_displayName FROM Events WHERE Id = ?"
params = ["Jq74mCczmFXk1tC10GB"]
cur = conn.execute(cmd, params)
rs = cur.fetchall()
for row in rs:
	print(row)

CData Python Connector for Microsoft Office 365

Modifying Data

The connection is also used to issue INSERT, UPDATE, and DELETE commands to the data source. Parameters can be used with these statements if desired.

Note that the connector does not support transactions. As with normal write operations, all SQL statements executed by this connector affect the data source immediately. Call the connection's commit() method following the execution.

Insert

The following example adds a new record to the table:
cmd = "INSERT INTO Events (Id, location_displayName) VALUES (?, ?)"
params = ["Town Hall Grille", "Zenburger"]
cur = conn.execute(cmd, params)
print("Records affected: ", cur.rowcount)

Update

The following example modifies an existing record in the table:
cmd = "UPDATE Events SET location_displayName = ? WHERE Id = ?"
params = ["Zenburger", "Jq74mCczmFXk1tC10GB"]
cur = conn.execute(cmd, params)
print("Records affected: ", cur.rowcount)

Delete

The following example removes an existing record from the table:

cmd = "DELETE FROM Events WHERE Id = ?"
params = ["Jq74mCczmFXk1tC10GB"]
cur = conn.execute(cmd, params)
print("Records affected: ", cur.rowcount)

CData Python Connector for Microsoft Office 365

Calling Stored Procedures

You can execute stored procedures using either the execute() or callproc() method of the connection.

Calling Stored Procedures Using Execute()

When you call stored procedures by issuing EXECUTE commands, the stored procedure arguments are parameterized. For example:
cmd = "EXECUTE SendMail MessageId = ?"
params = ["abc123"]
conn.execute(cmd, params)

Calling Stored Procedures Using Callproc()

When you call stored procedured by issuing the callproc() method, the stored procedure arguments are a procedure name and a list of parameters. For example:
cur = conn.cursor()
params = ["abc123"]
cur.callproc("SendMail", params)

CData Python Connector for Microsoft Office 365

Using from Tools

The connector is integrated with other tools and packages within Python.

Python Integration Guides

The following sections show how to create and use connections with the connector in common packages in Python:

Complete List of Microsoft Office 365 Integration Quickstarts

For information on connecting from other applications, see Microsoft Office 365 integration guides.

CData Python Connector for Microsoft Office 365

From SQLAlchemy

The CData Python Connector for Microsoft Office 365 includes a Dialect class that enables integration with SQLAlchemy. Bear in mind that several aspects of connector functionality are not currently supported in SQLAlchemy 2.0 or above. If necessary, downgrade SQLAlchemy to version 1.4 or 1.3 before using this connector.

The following sections detail various aspects of this integration:

Connecting From SQLAlchemy

To construct a URL with which SQLAlchemy loads and uses the appropriate connector automatically, see Connecting

Reflecting Metadata With SQLAlchemy

To learn how to model Microsoft Office 365 tables with mapped classes, see Reflecting Metadata.

Querying Data From SQLAlchemy

To learn how to use mapped classes to query the associated tables, see Querying Data.

Modifying Data From SQLAlchemy

The connector provides INSERT/UPDATE/DELETE functionality in SQLAlchemy. To learn how to call the session's execute() method to affect the data in the data source, see Modifying Data.

CData Python Connector for Microsoft Office 365

Connecting

Connecting With a Dialect URL

Establishing a connection using SQLAlchemy requires a specific URL format.
from sqlalchemy import create_engine
engine = create_engine("office365:///?InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;")

For SQLAlchemy 2.0, the dialect name is office365_2. To establish a connection, use the following URL format:

from sqlalchemy import create_engine
engine = create_engine("office365_2:///?InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;")

CData Python Connector for Microsoft Office 365

Reflecting Metadata

SQLAlchemy can act as an Object-relational Map (ORM). This enables you to treat records of a database table as instantiable records. To leverage this functionality, you must reflect the underlying metadata in one of the following ways.

Note: The following examples employ SQLAlchemy 1.4.

Modeling Data Using a Mapping Class

Use "sqlalchemy.ext.declarative.declarative_base" to declare a mapping class for the table you wish to model in the ORM. A known table in the data model is modeled either partially or completely, as shown in the following example:
from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()
class Events(Base):
	__tablename__ = "Events"
	Id = Column(String, primary_key=True)
	Id = Column(String)
	location_displayName = Column(String)

Automatically Reflecting Metadata

Rather than mapping tables manually, SQLAlchemy can discover the metadata for one or more tables automatically. To accomplish this across the entire data model, use automap_base:
from sqlalchemy import MetaData
from sqlalchemy.ext.automap import automap_base
meta = MetaData()
abase = automap_base(metadata=meta)
abase.prepare(autoload_with=engine)
Events = abase.classes.Events

You can also reflect a single table with an inspector. When reflecting this way, providing a list of specific columns to map is optional:

from sqlalchemy import MetaData, Table
from sqlalchemy import inspect
meta = MetaData()
insp = inspect(engine)
Events_table = Table("Events", meta)
insp.reflect_table(Events_table, ["Id","location_displayName"])

CData Python Connector for Microsoft Office 365

Querying Data

After you use the steps in Connecting to connect, and use one of the methods in Reflecting Metadata to reflect some of the metadata, you can use a session object to query data.

Querying Data Using the Query Method

If the mapping class has been prepared, use it with a session object to query the data source. After binding the engine to the session, provide the mapping class to the session's query method.

For example:

engine = create_engine("office365:///?InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;")
factory = sessionmaker(bind=engine)
session = factory()
for instance in session.query(Events).filter_by(Id="Jq74mCczmFXk1tC10GB"):
	print("Id: ", instance.Id)
	print("Id: ", instance.Id)
	print("location_displayName: ", instance.location_displayName)
	print("---------")

Querying Data Using the Execute Method

The session object can also run the query with the execute() method alongside the appropriate Table object. Assuming you have an active session, the following is just as viable:
Events_table = Events.metadata.tables["Events"]
for instance in session.execute(Events_table.select().where(Events_table.c.Id == "Jq74mCczmFXk1tC10GB")):
	print("Id: ", instance.Id)
	print("FullName: ", instance.Name)
	print("City: ", instance.BillingCity)
	print("---------")

CData Python Connector for Microsoft Office 365

Executing JOINs

Implicit Joining

If mapped classes of related Microsoft Office 365 objects have a singular foreign key relationship, the classes are implicitly joined. After importing the necessary objects, a relationship is established between your two mapped classes, as in the example below:
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import Column, String, Integer, DateTime, ForeignKey
from sqlalchemy.orm import sessionmaker, relationship

Base = declarative_base()
class Contact(Base):
	__tablename__ = "Contact"
	Id = Column(Integer, primary_key=True)
	Name = Column(String)
	Email = Column(String)
	BirthDate = Column(DateTime)
	AccountId = Column(String, ForeignKey("Account.Id"))
	Account_Link = relationship("Account", back_populates="Contact_Link")

class Account(Base):
	__tablename__ = "Account"
	Id = Column(String, primary_key=True)
	Name = Column(String)
	BillingCity = Column(String)
	NumberOfEmployees = Column(Integer)
	Contact_Link = relationship("Contact", order_by=Contact.Id, back_populates="Account_Link")

Once the relationship is established, the tables are queried simultaneously using the session's query() method. For example:

rs = session.query(Account, Contact).filter(Account.Id == Contact.AccountId)
for Ac, Ct in rs:
  print("AccountId: ", Ac.Id)
  print("AccountName: ", Ac.Name)
  print("ContactId: ", Ct.Id)
  print("ContactName: ", Ct.Name)

Other Join Forms

In situations where mapped classes have either no foreign keys or multiple foreign keys, you may need different forms of the JOIN query to accommodate them. Using the earlier classes as examples, the following JOIN queries are possible as well:
  • Explicit condition (necessary if there are no foreign keys in your mapped classes):
    rs = session.query(Account, Contact).join(Contact, Account.Id == Contact.AccountId)
    for Ac, Ct in rs:
  • Left-to-right relationship:
    rs = session.query(Account, Contact).join(Account.Contact_Link)
    for Ac, Ct in rs:
  • Left-to-right relationship with explicit target:
    rs = session.query(Account, Contact).join(Contact, Account.Contact_Link)
    for Ac, Ct in rs:
  • String form of a left-to-right relationship:
    rs = session.query(Account, Contact).join("Contact_Link")
    for Ac, Ct in rs:

CData Python Connector for Microsoft Office 365

Other SQL Clauses

SQLAlchemy ORM also exposes support for other clauses in SQL, such as ORDER BY, GROUP BY, LIMIT, and OFFSET. All of these are supported by this connector:

ORDER BY

The following example sorts by a specified column using the session object's query() method:
rs = session.query(Events).order_by(Events.Reminder)
for instance in rs:
	print("Id: ", instance.Id)
	print("Id: ", instance.Id)
	print("location_displayName: ", instance.location_displayName)
	print("---------")

You can also use the session object's execute() method perform an ORDER BY. For example:

rs = session.execute(Events_table.select().order_by(Events_table.c.Reminder))
for instance in rs:

GROUP BY

The following example uses the session object's query() method to group records with a specified column:
rs = session.query(func.count(Events.Id).label("CustomCount"), Events.Id).group_by(Events.Id)
for instance in rs:
	print("Count: ", instance.CustomCount)
	print("Id: ", instance.Id)
	print("---------")

You can also use the session object's execute() method to perform a GROUP BY:

rs = session.execute(Events_table.select().with_only_columns([func.count(Events_table.c.Id).label("CustomCount"), Events_table.c.Id]).group_by(Events_table.c.Id))
for instance in rs:

LIMIT and OFFSET

The following example uses the session object's query() method to skip the first 100 records and fetch the following 25:
rs = session.query(Events).limit(25).offset(100)
for instance in rs:
	print("Id: ", instance.Id)
	print("Id: ", instance.Id)
	print("location_displayName: ", instance.location_displayName)
	print("---------")

You can also use the session object's execute() method to set a LIMIT or OFFSET:

rs = session.execute(Events_table.select().limit(25).offset(100))
for instance in rs:

CData Python Connector for Microsoft Office 365

Aggregate Functions

Certain aggregate functions can also be used within SQLAlchemy by using the func module.

To import this module, execute:

from sqlalchemy.sql import func

Once func is imported, the following aggregate functions are available:

COUNT

The following example counts the number of records in a set of groups using the session object's query() method.
rs = session.query(func.count(Events.Id).label("CustomCount"), Events.Id).group_by(Events.Id)
for instance in rs:
	print("Count: ", instance.CustomCount)
	print("Id: ", instance.Id)
	print("---------")

You can also execute COUNT using the session object's execute() method:

rs = session.execute(Events_table.select().with_only_columns([func.count(Events_table.c.Id).label("CustomCount"), Events_table.c.Id])group_by(Events_table.c.Id))
for instance in rs:

SUM

This example calculates the cumulative amount of a numeric column in a set of groups.

rs = session.query(func.sum(Events.Reminder).label("CustomSum"), Events.Id).group_by(Events.Id)
for instance in rs:
	print("Sum: ", instance.CustomSum)
	print("Id: ", instance.Id)
	print("---------")

You can also invoke SUM using the session object's execute() method.

rs = session.execute(Events_table.select().with_only_columns([func.sum(Events_table.c.Reminder).label("CustomSum"), Events_table.c.Id]).group_by(Events_table.c.Id))
for instance in rs:

AVG

This example uses the session object's query() method to calculate the average amount of a numeric column in a set of groups:
rs = session.query(func.avg(Events.Reminder).label("CustomAvg"), Events.Id).group_by(Events.Id)
for instance in rs:
	print("Avg: ", instance.CustomAvg)
	print("Id: ", instance.Id)
	print("---------")

You can also use the session object's execute() method to invoke AVG:

rs = session.execute(Events_table.select().with_only_columns([func.avg(Events_table.c.Reminder).label("CustomAvg"), Events_table.c.Id]).group_by(Events_table.c.Id))
for instance in rs:

MAX and MIN

This example finds the maximum value and minimum value of a numeric column in a set of groups.
rs = session.query(func.max(Events.Reminder).label("CustomMax"), func.min(Events.Reminder).label("CustomMin"), Events.Id).group_by(Events.Id)
for instance in rs:
	print("Max: ", instance.CustomMax)
	print("Min: ", instance.CustomMin)
	print("Id: ", instance.Id)
	print("---------")

You can also use the session object's execute() method to invoke MAX and MIN:

rs = session.execute(Events_table.select().with_only_columns([func.max(Events_table.c.Reminder).label("CustomMax"), func.min(Events_table.c.Reminder).label("CustomMin"), Events_table.c.Id]).group_by(Events_table.c.Id))
for instance in rs:

CData Python Connector for Microsoft Office 365

Modifying Data

Commands can be executed individually by the session with a call to "execute()".

Obtaining the Table Object

The query supplied to this method is constructed using the associated Table object of a mapped class. This Table object is obtained from the mapped class's metadata field, as below:

Events_table = Events.metadata.tables["Events"]

Once the table object is obtained, the write operations are executed in the following ways. The queries are executed immediately without the need for a call to "commit()":

Insert

The following example adds a new record to the table:

session.execute(Events_table.insert(), {"Id": "Town Hall Grille", "location_displayName": "Zenburger"})

Update

The following example modifies an existing record in the table:

session.execute(Events_table.update().where(Events_table.c.Id == "Jq74mCczmFXk1tC10GB").values(Id="Town Hall Grille", location_displayName="Zenburger"))

Delete

The following example removes an existing record from the table:

session.execute(Events_table.delete().where(Events_table.c.Id == "Jq74mCczmFXk1tC10GB"))

CData Python Connector for Microsoft Office 365

From Pandas

When combined with the connector, Pandas can be used to generate data frames that contain your Microsoft Office 365 data. Once created, a data frame can be passed to various other Python packages.

Connecting

Pandas relies on an SQLAlchemy engine to execute queries. Before you can use Pandas you must import it:
import pandas as pd
from sqlalchemy import create_engine
engine = create_engine("office365:///?InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;")

Querying Data

In Pandas, SELECT queries are provided in a call to the read_sql() method, alongside a relevant connection object. Pandas executes the query on that connection, and returns the results in the form of a data frame, which can be used for a variety of purposes.
df = pd.read_sql("""
	SELECT
	   Id,
	   location_displayName,
     $exNumericCol;
	FROM Events;""", engine)
print(df)

Modifying Data

To insert new records into a table, create a new data frame, and define its fields accordingly. When that is done, call to_sql() on the data frame to perform the INSERT operation with the connector, as shown in the example below. You must set the "if _exists" argument to "append" to prevent Pandas from attempting building the table from scratch. To prevent Pandas from writing the data frame index as a column, set index=False.
df = pd.DataFrame({"Id": ["Town Hall Grille"], "location_displayName": ["Zenburger"]})
df.to_sql("Events", con=engine, if_exists="append", index=False)

CData Python Connector for Microsoft Office 365

From Matplotlib

Matplotlib contains a number of tools that can graphically model Microsoft Office 365 data after being fed a data frame From Pandas.

Using PyPlot

Before any Matplotlib tool, such as pyplot, can be used, it must be imported:
from matplotlib import pyplot as plt

Once a Pandas data frame is obtained, it can be used to create a plot visualizing Microsoft Office 365 data. For example, the following plot generates and displays a bar graph relating Id and Reminder values:

df.plot(kind="bar", x="Id", y=["Reminder"])
plt.show()

CData Python Connector for Microsoft Office 365

From Petl

The connector can be used to create ETL applications and pipelines for CSV data in Python using Petl.

Install Required Modules

Install the Petl modules using the pip utility.
pip install petl

Connecting

After you import the modules, including the CData Python Connector for Microsoft Office 365, you can use the connector's connect function to create a connection using a valid Microsoft Office 365 connection string. If you prefer not to use a direct connection, you can use a SQLAlchemy engine.
import petl as etl
import cdata.office365 as mod
cnxn = mod.connect("InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;")

Extract, Transform, and Load the Microsoft Office 365 Data

Create a SQL query string and store the query results in a DataFrame.
sql = "SELECT	Id, location_displayName FROM Events "
table1 = etl.fromdb(cnxn,sql)

Loading Data

With the query results stored in a DataFrame, you can load your data into any supported Petl destination. The following example loads the data into a CSV file.
etl.tocsv(table1,'output.csv')

Modifying Data

Insert new rows into Microsoft Office 365 tables using Petl's appenddb function.
table1 = [['Id','location_displayName'],['Town Hall Grille','Zenburger']]
etl.appenddb(table1,cnxn,'Events')

CData Python Connector for Microsoft Office 365

Schema Discovery

The extension supports schema discovery by using SQL queries to available System Tables.

Using SQL

The following sections describe the discovery of metadata through several System Tables:

CData Python Connector for Microsoft Office 365

Tables and Views

The connector possesses system tables that are used to discover the tables and views available in the data model. Of these system tables, "sys_tables" and "sys_views" are used to fetch information about the available tables and views respectively:

Tables


import cdata.office365 as mod
conn = mod.connect("InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;")
cur = conn.cursor()
cmd = "SELECT * FROM sys_tables"
cur.execute(cmd)
rs = cur.fetchall()
for row in rs:
	print(row)

Views


import cdata.office365 as mod
conn = mod.connect("InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;")
cur = conn.cursor()
cmd = "SELECT * FROM sys_views"
cur.execute(cmd, params)
rs = cur.fetchall()
for row in rs:
	print(row)

CData Python Connector for Microsoft Office 365

Columns

The available columns for any given table are fetched from a system table called "sys_tablecolumns". A specific table name is provided in the WHERE criteria to restrict the table from which the column information is fetched:

import cdata.office365 as mod
conn = mod.connect("InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;")
cur = conn.cursor()
cmd = "SELECT * FROM sys_tablecolumns WHERE TableName = 'Events'"
cur.execute(cmd)
rs = cur.fetchall()
for row in rs:
	print(row)

CData Python Connector for Microsoft Office 365

Procedures

Procedures

A system table called "sys_procedures" is queried to obtain the available stored procedures that are executed:
import cdata.office365 as mod
conn = mod.connect("InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;")
cur = conn.cursor()
cmd = "SELECT * FROM sys_procedures"
cur.execute(cmd)
rs = cur.fetchall()
for row in rs:
	print(row)

Parameters

The input parameters of any stored procedure are similarly obtained from the "sys_procedureparameters" system table:
import cdata.office365 as mod
conn = mod.connect("InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;")
cur = conn.cursor()
cmd = "SELECT * FROM sys_procedureparameters WHERE ProcedureName = 'SendMail'"
cur.execute(cmd)
rs = cur.fetchall()
for row in rs:
	print(row)

CData Python Connector for Microsoft Office 365

Advanced Features

This section details a selection of advanced features of the Microsoft Office 365 connector.

User Defined Views

The connector supports the use of user defined views, virtual tables whose contents are decided by a pre-configured user defined query. These views are useful when you cannot directly control queries being issued to the drivers. For an overview of creating and configuring custom views, see User Defined Views .

SSL Configuration

Use SSL Configuration to adjust how connector handles TLS/SSL certificate negotiations. You can choose from various certificate formats;. For further information, see the SSLServerCert property under "Connection String Options" .

Firewall and Proxy

Configure the connector for compliance with Firewall and Proxy, including Windows proxies and HTTP proxies. You can also set up tunnel connections.

Caching Data

Caching Data enables faster access to data and reduces the number of API calls, improving performance. The connector supports a simple caching model where multiple connections can also share the cache over time. When configuring the cache connection, you can specify automatic or explicit data caching.

Query Processing

The connector offloads as much of the SELECT statement processing as possible to Microsoft Office 365 and then processes the rest of the query in memory (client-side).

For further information, see Query Processing.

Logging

For an overview of configuration settings that can be used to refine CData logging, see Logging. Only two connection properties are required for basic logging, but there are numerous features that support more refined logging, which enables you to use the LogModules connection property to specify subsets of information to be logged.

Exception Handling

For an overview of how exceptions are reported and the components of an exception, see Exception Handling.

CData Python Connector for Microsoft Office 365

User Defined Views

The CData Python Connector for Microsoft Office 365 supports the use of user defined views: user-defined virtual tables whose contents are decided by a preconfigured query. User defined views are useful in situations where you cannot directly control the query being issued to the driver; for example, when using the driver from a tool.

Use a user defined view to define predicates that are always applied. If you specify additional predicates in the query to the view, they are combined with the query already defined as part of the view.

There are two ways to create user defined views:

  • Create a JSON-formatted configuration file defining the views you want.
  • DDL statements.

Defining Views Using a Configuration File

User defined views are defined in a JSON-formatted configuration file called UserDefinedViews.json. The connector automatically detects the views specified in this file.

You can also have multiple view definitions and control them using the UserDefinedViews connection property. When you use this property, only the specified views are seen by the connector.

This user defined view configuration file is formatted so that each root element defines the name of a view, and includes a child element, called query, which contains the custom SQL query for the view.

For example:

{
	"MyView": {
		"query": "SELECT * FROM Events WHERE MyColumn = 'value'"
	},
	"MyView2": {
		"query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)"
	}
}
Use the UserDefinedViews connection property to specify the location of your JSON configuration file. For example:
"UserDefinedViews", "C:\\Users\\yourusername\\Desktop\\tmp\\UserDefinedViews.json"

Defining Views Using DDL Statements

The connector is also capable of creating and altering the schema via DDL Statements such as CREATE LOCAL VIEW, ALTER LOCAL VIEW, and DROP LOCAL VIEW.

Create a View

To create a new view using DDL statements, provide the view name and query as follows:

CREATE LOCAL VIEW [MyViewName] AS SELECT * FROM Customers LIMIT 20;

If no JSON file exists, the above code creates one. The view is then created in the JSON configuration file and is now discoverable. The JSON file location is specified by the UserDefinedViews connection property.

Alter a View

To alter an existing view, provide the name of an existing view alongside the new query you would like to use instead:

ALTER LOCAL VIEW [MyViewName] AS SELECT * FROM Customers WHERE TimeModified > '3/1/2020';

The view is then updated in the JSON configuration file.

Drop a View

To drop an existing view, provide the name of an existing schema alongside the new query you would like to use instead.

DROP LOCAL VIEW [MyViewName]

This removes the view from the JSON configuration file. It can no longer be queried.

Schema for User Defined Views

In order to avoid a view's name clashing with an actual entity in the data model, user defined views are exposed in the UserViews schema by default. To change the name of the schema used for UserViews, reset the UserViewsSchemaName property.

Working with User Defined Views

For example, a SQL statement with a user defined view called UserViews.RCustomers only lists customers in Raleigh:
SELECT * FROM Customers WHERE City = 'Raleigh';
An example of a query to the driver:
SELECT * FROM UserViews.RCustomers WHERE Status = 'Active';
Resulting in the effective query to the source:
SELECT * FROM Customers WHERE City = 'Raleigh' AND Status = 'Active';
That is a very simple example of a query to a user defined view that is effectively a combination of the view query and the view definition. It is possible to compose these queries in much more complex patterns. All SQL operations are allowed in both queries and are combined when appropriate.

CData Python Connector for Microsoft Office 365

SSL Configuration

Customizing the SSL Configuration

By default, the connector attempts to negotiate TLS with the server. The server certificate is validated against the default system trusted certificate store. You can override how the certificate gets validated using the SSLServerCert connection property.

To specify another certificate, see the SSLServerCert connection property.

CData Python Connector for Microsoft Office 365

Firewall and Proxy

Connecting Through a Firewall or Proxy

HTTP Proxies

Note: The connector uses the system proxy settings by default, without further configuration needed. If you want to connect to other proxies, set ProxyAutoDetect to False and read further.

To authenticate to an HTTP proxy, set the following:

  • ProxyServer: the hostname or IP address of the proxy server that you want to route HTTP traffic through.
  • ProxyPort: the TCP port that the proxy server is running on.
  • ProxyAuthScheme: the authentication method the connector uses when authenticating to the proxy server.
  • ProxyUser: the username of a user account registered with the proxy server.
  • ProxyPassword: the password associated with the ProxyUser.

Other Proxies

Set the following properties:

CData Python Connector for Microsoft Office 365

Caching Data

Caching Data

Caching data provides several benefits, including faster access to data and reducing the number of API calls, which improve performance. The connector supports a simple caching model where multiple connections can also share the cache over time. You can enable and configure caching features by setting the necessary connection properties.

Contents

The sections in this chapter detail the connector's caching functionality and link to the corresponding connection properties, as well as SQL statements.

Configuring the Cache Connection

Configuring the Cache Connection describes the properties that you can set when configuring the cache database.

Caching Metadata

Caching Metadata describes the CacheMetadata property. This property determines whether or not to cache the table metadata to a file store.

Automatically Caching Data

Automatically Caching Data describes how the connector automatically refreshes the cache when the AutoCache property is set.

Explicitly Caching Data

Explicitly Caching Data describes how you can decide what data is stored in the cache and when it is updated.

Data Type Mapping

Data Type Mapping shows the mappings between the data types configured in the schema and the data types in the database.

CData Python Connector for Microsoft Office 365

Configuring the Cache Connection

Configuring the Caching Database

This section describes the properties for caching data to the persistent store of your choice.

CacheLocation

The CacheLocation property species the path to a file-system-based database. When caching is enabled, a file-system-based database is used by default. If CacheLocation is not specified, this database is stored at the path in Location. If neither of these connection properties are specified, the connector uses a platform-dependent default location.

CacheConnection

The CacheConnection property specifies a database driver and the connection string to the caching database.

CacheDriver and CacheProvider

Both the CacheDriver and CacheProvider properties are supported. Each specifies a database driver and the connection string to the caching database. CacheDriver is designed for Linux and MacOS; CacheProvider is Windows-based.

CData Python Connector for Microsoft Office 365

Caching Metadata

This section describes how to enable caching metadata and how to update the metadata cache.

Before being able to query data, the connector requires relevant metadata to be retrieved. By default, metadata is cached in memory and shared across connections. But if you want to persist across processes, or if metadata requests are expensive, the solution is to cache the metadata to disk.

Enable Caching Metadata

To enable caching of metadata, set CacheMetadata = true and see Configuring the Cache Connection for instructions on how to configure your connection string. The connector caches the metadata the first time it is needed and uses the metadata cache for subsequent requests.

Update the Metadata Cache

Because metadata is cached, changes to metadata on the live source, for example, adding or removing a column or attribute, are not automatically reflected in the metadata cache. To get updates to the live metadata, you need to delete or drop the cached data.

CData Python Connector for Microsoft Office 365

Automatically Caching Data

Automatically caching data is useful when you do not want to rebuild the cache for each query. When you query data for the first time, the connector automatically initializes and builds a cache in the background. When AutoCache = true, the connector uses the cache for subsequent query executions, resulting in faster response times.

Configuring Automatic Caching

Caching the Events Table

The following example caches the Events table in the file specified by the CacheLocation property of the connection string.

SELECT Id, location_displayName FROM Events WHERE Id = 'Jq74mCczmFXk1tC10GB'

Common Use Case

A common use for automatically caching data is to improve driver performance when making repeated requests to a live data source, such as building a report or creating a visualization. With auto caching enabled, repeated requests to the same data may be executed in a short period of time, but within an allowable tolerance (CacheTolerance) of what is considered "live" data.

CData Python Connector for Microsoft Office 365

Explicitly Caching Data

With explicit caching (AutoCache = false), you decide exactly what data is cached and when to query the cache instead of the live data. Explicit caching gives you full control over the cache contents by using CACHE Statements. This section describes some strategies to use the caching features offered by the connector.

Creating the Cache

To load data in the cache, issue the following statement.

CACHE SELECT * FROM tableName WHERE ...

Once the statement is issued, any matching data in tableName is loaded into the corresponding table.

Updating the Cache

This section describes two ways to update the cache.

Updating with the SELECT Statement

The following example shows a statement that can update modified rows and add missing rows in the cached table. However, this statement does not delete extra rows that are already in the cache. This statement only merges the new rows or updates the existing rows.

CACHE SELECT * FROM Events WHERE Id = 'Jq74mCczmFXk1tC10GB'

Updating with the TRUNCATE Statement

The following example shows a statement that can update modified rows and add missing rows in the cached table. This statement can also delete rows in the cache table that are not present in the live data source.

  CACHE WITH TRUNCATE SELECT * FROM Events WHERE Id = 'Jq74mCczmFXk1tC10GB'
  

Query the Data in Online or Offline Mode

This section describes how to query the data in online or offline mode.

Online: Select Cached Tables

You can use the tableName#CACHE syntax to explicitly execute queries to the cache while still online, as shown in the following example.

SELECT * FROM Events#CACHE

Offline: Select Cached Tables

With Offline = true, SELECT statements always execute against the local cache database, regardless of whether you explicitly specify the cached table or not. Modification of the cache is disabled in Offline mode to prevent accidentally updating only the cached data. Executing a DELETE/UPDATE/INSERT statement while in Offline mode results in an exception.

The following example selects from the local cache but not the live data source because Offline = true.

SELECT * FROM Events WHERE Id='Jq74mCczmFXk1tC10GB' ORDER BY location_displayName ASC

Delete Data from the Cache

You can delete data from the cache by building a direct connection to the database. Note that the connector does not support manually deleting data from the cache.

Common Use Case

A common use for caching is to have an application always query the cached data and only update the cache at set intervals, such as once every day or every two hours. There are two ways in which this can be implemented:

  • AutoCache = false and Offline = false. All queries issued by the application explicitly reference the tableName#CACHE table. When the cache needs to be updated, the application executes a tableName#CACHE ... statement to bring the cached data up to date.
  • Offline = true. Caching is transparent to the application. All queries are executed against the table as normal, so most application code does not need to be aware that caching is done. To update the cached data, simply create a separate connection with Offline = false and execute a tableName#CACHE ... statement.

CData Python Connector for Microsoft Office 365

Data Type Mapping

The connector maps types from the data source to the corresponding data type available in the chosen cache database. The following table shows the mappings between the data types configured in the schema and the data types in the database. Some schema types have synonyms which are all listed in the Schema column.

Data Type Mapping

Note: String columns can map to different data types depending on their length.

Schema .NET JDBC SQL Server Derby MySQL Oracle SQLite Access
int, integer, int32 Int32 int int INTEGER INT NUMBER integer LONG
smallint, short, int16 Int16 short smallint SMALLINT SMALLINT NUMBER integer SHORT
double, float, real Double double float DOUBLE DOUBLE NUMBER double DOUBLE
date DateTime java.sql.Date date DATE DATE DATE date DATETIME
datetime, timestamp DateTime java.sql.Date datetime TIMESTAMP DATETIME TIMESTAMP datetime DATETIME
time, timespan TimeSpan java.sql.Time time TIME TIME TIMESTAMP datetime DATETIME
string, varchar String java.lang.String If length > 4000: nvarchar(max), Otherwise: nvarchar(length)If length > 32672: LONG VARCHAR, Otherwise VARCHAR(length)If length > 255: LONGTEXT, Otherwise: VARCHAR(length)If length > 4000: CLOB, Otherwise: VARCHAR2(length)nvarchar(length)If length > 255: LONGTEXT, Otherwise: VARCHAR(length)
long, int64, bigint Int64 long bigint BIGINT BIGINT NUMBER bigint LONG
boolean, bool Boolean boolean tinyint SMALLINT BIT NUMBER tinyint BIT
decimal, numeric Decimal java.math.BigDecimal decimal DECIMAL DECIMAL DECIMAL decimal CURRENCY
uuid Guid java.util.UUID nvarchar(length) VARCHAR(length)VARCHAR(length) VARCHAR2(length)nvarchar(length) VARCHAR(length)
binary, varbinary, longvarbinary byte[] byte[] binary(1000) or varbinary(max) after SQL Server 2000, image otherwise BLOB LONGBLOB BLOB BLOB LONGBINARY

CData Python Connector for Microsoft Office 365

Query Processing

Query Processing

CData has a client-side SQL engine built into the connector library. This enables support for the full capabilities that SQL-92 offers, including filters, aggregations, functions, etc.

For sources that do not support SQL-92, the connector offloads as much of SQL statement processing as possible to Microsoft Office 365 and then processes the rest of the query in memory (client-side). This results in optimal performance.

For data sources with limited query capabilities, the connector handles transformations of the SQL query to make it simpler for the connector. The goal is to make smart decisions based on the query capabilities of the data source to push down as much of the computation as possible. The Microsoft Office 365 Query Evaluation component examines SQL queries and returns information indicating what parts of the query the connector is not capable of executing natively.

The Microsoft Office 365 Query Slicer component is used in more specific cases to separate a single query into multiple independent queries. The client-side Query Engine makes decisions about simplifying queries, breaking queries into multiple queries, and pushing down or computing aggregations on the client-side while minimizing the size of the result set.

There's a significant trade-off in evaluating queries, even partially, client-side. There are always queries that are impossible to execute efficiently in this model, and some can be particularly expensive to compute in this manner. CData always pushes down as much of the query as is feasible for the data source to generate the most efficient query possible and provide the most flexible query capabilities.

More Information

For a full discussion of how CData handles query processing, see CData Architecture: Query Execution.

CData Python Connector for Microsoft Office 365

Logging

Logging

Capturing connector logging can be very helpful when diagnosing error messages or other unexpected behavior.

Basic Logging

To begin capturing connector logging, set these properties:

  • Logfile: A filepath that designates the name and location of the log file.
  • Verbosity: A numerical value (1-5) that determines the amount of detail in the log. See the page in the Connection Properties section for an explanation of the five levels.
  • MaxLogFileSize: When the limit is hit, a new log is created in the same folder with the date and time appended to the end. The default limit is 100 MB. Values lower than 100 kB will use 100 kB as the value instead.
  • MaxLogFileCount: A string specifying the maximum file count of log files. When the limit is hit, a new log is created in the same folder with the date and time appended to the end and the oldest log file will be deleted. Minimum supported value is 2. A value of 0 or a negative value indicates no limit on the count.

Once these properties are set, the connector populates the log file as it carries out various tasks, such as when authentication is performed or queries are executed. If the specified file doesn't already exist, it is created.

Log Verbosity

The verbosity level determines the amount of detail that the connector reports to the Logfile. Supported Verbosity levels range from 1 to 5.

The following list describes each level:

1Setting Verbosity to 1 logs the query, the number of rows returned by it, the start of execution and the time taken, and any errors.
2Setting Verbosity to 2 logs everything included in Verbosity 1, cache queries, and additional information about the request.
3Setting Verbosity to 3 also logs HTTP headers, as well as the body of the request and the response.
4Setting Verbosity to 4 also logs transport-level communication with the data source. This includes SSL negotiation.
5Setting Verbosity to 5 also logs communication with the data source and additional details that may be helpful in troubleshooting problems. This includes interface commands.

For normal operations, Verbosity should not be set to greater than 1. At higher verbosities you can log substantial amounts of data, which can delay execution times.

To refine the logged content further by showing/hiding specific categories of information, see LogModules.

Sensitive Data

Verbosity levels of 3 and higher may capture information that you do not want shared outside of your organization. The following lists information of concern for each level:

  • Verbosity 3: The full body of the request and the response, which includes all the data returned by the connector
  • Verbosity 4: SSL certificates
  • Verbosity 5: Any extra transfer data not included at Verbosity 3, such as non human-readable binary transfer data

Note: Although we mask sensitive values, such as passwords, in the connection string and any request in the log, it is always best practice to review the logs for any sensitive information before sharing outside your organization.

Advanced Logging

You may want to refine the exact information that is recorded to the log file. This can be accomplished using the LogModules property. This property allows you to filter the logging using a semicolon-separated list of logging modules.

Example property value:

LogModules=INFO;EXEC;SSL;SQL;META;

Note that the logfile filtering triggered by the Verbosity connection property takes precedence over the filtering imposed by this connection property. This means that operations of a higher verbosity level than the level specified in the Verbosity connection property are not printed in the logfile, even if they belong to one of the modules specified in this connection property.

The available modules and submodules are:

Module Name Module Description Submodules
INFO General Information. Includes the connection string, product version (build number), and initial connection messages.
  • Connec – Information related to creating or destroying connections.
  • Messag – Generic label for messages pertaining to connections, the connection string, and product version. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
EXEC Query Execution. Includes execution messages for user-written SQL queries, parsed SQL queries, and normalized SQL queries. Success/failure messages for queries and query pages appear here as well.
  • Messag – Messages pertaining to query execution. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • Normlz – Query normalization steps. Query normalization is when the product takes the user-submitted query and rewrites the query to get the same results with optimal performance.
  • Origin – This label applies to any messages recording a user's original query (the exact, unaltered, non-normalized query executed by the user).
  • Page – Messages related to query paging.
  • Parsed – Query parsing steps. Parsing is the process of converting the user-submitted query into a standardized format for easier processing.
HTTP HTTP protocol messages. Includes HTTP requests/responses (including POST messages), as well as Kerberos related messages.
  • KERB – HTTP requests related to Kerberos.
  • Messag – Messages pertaining to HTTP protocols. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • Unpack – This label applies to messages about zipped data being returned from the service API and unpacked by the product.
  • Res – Messages containing HTTP responses.
  • Req – Messages containing HTTP requests.
WSDL Messages pertaining to the generation of WSDL/XSD files.
SSL SSL certificate messages.
  • Certif – Messages pertaining to SSL certificates.
AUTH Authentication related failure/success messages.
  • Messag – Messages pertaining to authentication. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • OAuth – Messages related to OAuth authentication.
  • Krbros – Kerberos-related authentication messages.
SQL Includes SQL transactions, SQL bulk transfer messages, and SQL result set messages.
  • Bulk – Messages pertaining to bulk query execution.
  • Cache – Messages related to reading row data from and writing row data to the product's cache for better performance.
  • Messag – Messages pertaining to SQL transactions. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • ResSet – Query resultsets.
  • Transc – Messages related to handling transactions, including information about the number of jobs executed and backup table handling.
META Metadata cache and schema messages.
  • Cache – Messages related to reading from and modifying column and table definitions in the product's cache for better performance.
  • Schema – Messages related to retrieving metadata from or modifying the service schema.
  • MemSto – Messages related to writing to or reading from in-memory metadata cache.
  • Storag – Messages relating to storing metadata on disk or in an external data store, rather than in memory.
FUNC Information related to executing SQL functions.
  • Errmsg – Error messages related to executing SQL functions.
TCP Incoming and outgoing raw bytes on TCP transport layer messages.
  • Send – Raw data sent via the TCP protocol.
  • Receiv – Raw data received via the TCP protocol.
FTP Messages pertaining to the File Transfer Protocol.
  • Info – Status messages related to communication in the FTP protocol.
  • Client – Messages related to actions taken by the FTP client (the product) during FTP communication.
  • Server – Messages related to actions taken by the FTP server during FTP communication.
SFTP Messages pertaining to the Secure File Transfer Protocol.
  • Info – Status messages related to communication in the SFTP protocol.
  • To_Server – Messages related to actions taken by the SFTP client (the product) during SFTP communication.
  • From_Server – Messages related to actions taken by the SFTP server during SFTP communication.
POP Messages pertaining to data transferred via the Post Office Protocol.
  • Client – Messages related to actions taken by the POP client (the product) during POP communication.
  • Server – Messages related to actions taken by the POP server during POP communication.
  • Status – Status messages related to communication in the POP protocol.
SMTP Messages pertaining to data transferred via the Simple Mail Transfer Protocol.
  • Client – Messages related to actions taken by the SMTP client (the product) during SMTP communication.
  • Server – Messages related to actions taken by the SMTP server during SMTP communication.
  • Status – Status messages related to communication in the SMTP protocol.
CORE Messages relating to various internal product operations not covered by other modules.
DEMN Messages related to SQL remoting.
CLJB Messages about bulk data uploads (cloud job).
  • Commit – Submissions for bulk data uploads.
SRCE Miscellaneous messages produced by the product that don't belong in any other module.
TRANCE Advanced messages concerning low-level product operations.

CData Python Connector for Microsoft Office 365

Exception Handling

Exception Handling

Exceptions can be surfaced from either the API or the CData Python Connector for Microsoft Office 365. Each exception will have an error code, an error message, and a SQL state.

Error Codes

The error code classifies the type of error.

0 NONE Used for unclassified errors and internally handled errors. This code also covers data source-specific errors that do not fit in any specific category.
65537 TCP_UNKNOWN_HOST Unable to resolve a hostname (DNS failure).
65538 TCP_CONNECTION_REFUSED Could not connect to the remote port.
65539 TCP_AUTH_FAILED Login failed when using a binary authentication protocol. Use this for auth errors when the protocol is not HTTP (LDAP, SASL, Kerberos, ...).
65540 TCP_TIMEOUT Did not receive a response after sending a request to the server.
65541 TCP_PROTOCOL For wire protocol drivers. Either the server sent a bad packet that we are unable to process, or we cannot construct a packet to send.
131073 TLS_SERVER_UNTRUSTED Could not verify SSL server certificate.
131074 TLS_CLIENT_UNTRUSTED Server did not accept the client certificate we sent.
196609 OAUTH_DECRYPT_FAILED OAuthEncryptKey did not decrypt the OAuthSettings file.
196610 OAUTH_MISSING_CLIENT_INFO OAuthClientId / OAuthClientSecret / OAuthJWTCert is missing.
196611 OAUTH_MISSING_PROP General OAuth property missing. OAUTH_MISSING_CLIENT_INFO is used for missing client ID/secret and JWT cert.
196612 OAUTH_NO_ACCESS_TOKEN Unable to retrieve access token. Only use this when getting a token in GetOAuthAccessToken / RefreshOAuthAccessToken.
196613 OAUTH_TOKEN_EXPIRED The access token expired. Normally used with a RefreshOAuth/OAuthException behavior.
196614 OAUTH_INVALID_PROP OAuth property has an invalid value. OAUTH_MISSING_CLIENT_INFO / OAUTH_MISSING_PROP is used if the value is not set.
262145 HTTP_REQUEST_TIMEOUT Did not receive a response from the HTTP server.
262146 HTTP_CLIENT_ERROR Generic HTTP 4xx error. Only use for 4xx errors not covered by other codes.
262147 HTTP_AUTH_FAILED HTTP 401 error.
262148 HTTP_LIMIT_EXCEEDED HTTP 429 error.
262149 HTTP_SERVER_ERROR HTTP 5xx error.
262150 HTTP_NOT_FOUND_ERROR HTTP 404 error.
327681 CORE_TIMEOUT General timeout. Not related to a specific network request.
327682 CORE_OP_NOT_ALLOWED Operation blocked by provider permissions.
327683 CORE_CONNECTION_CONFIG Connection configuration is not valid.
327684 CORE_SERIALIZE Failed to encode data into a specific format (XML, JSON, CSV, ...).
327685 CORE_DESERIALIZE Failed to decode data from a specific format (XML, JSON, CSV, ...).
393217 SQL_SYNTAX_ERROR Unable to parse a SQL query.
393218 SQL_MISSING_COLUMNS Query did not include required columns.
393219 SQL_MISSING_PARAMS Stored procedure call did not include required parameters.
393220 SQL_QUERY_NOT_SUPPORTED A part of the query is not allowed in the current context.
458753 SSH_SERVER_UNTRUSTED Could not verify SSH server.
524289 STORAGE_LIST_EXCEPTION Issue listing storage resources.
524290 STORAGE_RESOURCE_NOT_FOUND Issue finding storage resources.
524291 STORAGE_ROOT_RESOURCE_NOT_FOUND The root resource (bucket/share/drive) was not found; cannot create it in flat file drivers.
524292 STORAGE_RESOURCE_NOT_A_DIRECTORY Storage resource is not a directory.
524293 STORAGE_RESOURCE_NOT_A_FILE Storage resource is not a file.
524294 STORAGE_PERMISSIONS_DENIED Storage permissions denied.

SQL State

The SQL state is used when throwing generic provider errors to the wrapper and indicates the success or failure of a call.

Some of the common SQL states are listed below:

07007 REQUIRED_CLAUSE Class Code 07: Dynamic SQL Error.
08001 OPEN_CONNECTION Class Code 08: Connection Exception. The connection was unable to be established to the application server or other server.
08004 REJECT_CONNECTION The application server rejected establishment of the connection.
42501 PRIVILEGE_IDENTIFIED_OBJECT Class Code 42: Syntax Error or Access Rule Violation. The authorization ID does not have the privilege to perform the specified operation on the identified object.
42506 AUTH_FAILED Owner authorization failure occurred.
42601 SQL_SYNTAX A character, token, or clause is invalid or missing.

Error Message

The error message provides more detailed reasoning about why the error occurred. It provides an explanation of the issue, and may include steps on how to resolve it.

CData Python Connector for Microsoft Office 365

SQL Compliance

The CData Python Connector for Microsoft Office 365 supports several operations on data, including querying, deleting, modifying, and inserting.

SELECT Statements

See SELECT Statements for a syntax reference and examples.

See Data Model for information on the capabilities of the Microsoft Office 365 API.

INSERT Statements

See INSERT Statements for a syntax reference and examples, as well as retrieving the new records' Ids.

UPDATE Statements

The primary key Id is required to update a record. See UPDATE Statements for a syntax reference and examples.

DELETE Statements

The primary key Id is required to delete a record. See DELETE Statements for a syntax reference and examples.

CACHE Statements

CACHE statements allow granular control over the connector's caching functionality. For a syntax reference and examples, see CACHE Statements.

For more information on the caching feature, see Caching Data.

EXECUTE Statements

Use EXECUTE or EXEC statements to execute stored procedures. See EXECUTE Statements for a syntax reference and examples.

Names and Quoting

  • Table and column names are considered identifier names; as such, they are restricted to the following characters: [A-Z, a-z, 0-9, _:@].
  • To use a table or column name with characters not listed above, the name must be quoted using square brackets ([name]) in any SQL statement.
  • Parameter names can optionally start with the @ symbol (e.g., @p1 or @CustomerName) and cannot be quoted.
  • Strings must be quoted using single quotes (e.g., 'John Doe').

CData Python Connector for Microsoft Office 365

SQL Functions

The connector provides functions that are similar to those that are available with most standard databases. These functions are implemented in the CData provider engine and thus are available across all data sources with the same consistent API. Three categories of functions are available: string, date, and math.

The connector interprets all SQL function inputs as either strings or column identifiers, so you need to escape all literals as strings, with single quotes. For example, contrast the SQL Server syntax and connector syntax for the DATENAME function:

  • SQL Server:
    SELECT DATENAME(yy,GETDATE())
  • connector:
    SELECT DATENAME('yy',GETDATE())

String Functions

These functions perform string manipulations and return a string value. See STRING Functions for more details.

Date Functions

These functions perform date and date time manipulations. See DATE Functions for more details.

Math Functions

These functions provide mathematical operations. See MATH Functions for more details.

CData Python Connector for Microsoft Office 365

STRING Functions

ASCII(character_expression)

Returns the ASCII code value of the left-most character of the character expression.

  • character_expression: The character expression.

                      SELECT ASCII('0');
                      --  Result: 48
                    

BASE64_ENCODE(input_binary)

Returns the Base64-encoded string form of a binary input.

  • input_binary: The binary value to encode.

                        SELECT BASE64_ENCODE(BinaryData);
                    -- Result: 'QmFzZTY0RW5jb2RlZA=='
                    

BASE64_DECODE(input_string)

Returns the binary result of decoding a Base64-encoded string.

  • input_string: The Base64-encoded string.

                        SELECT BASE64_DECODE('QmFzZTY0RW5jb2RlZA==');
                    -- Result: (binary output)
                    

CHAR(integer_expression)

Converts the integer ASCII code to the corresponding character.

  • integer_expression: The integer from 0 through 255.

                      SELECT CHAR(48);
                      -- Result: '0'
                    

CHARINDEX(expressionToFind ,expressionToSearch [,start_location ])

Returns the starting position of the specified expression in the character string.

  • expressionToFind: The character expression to find.
  • expressionToSearch: The character expression, typically a column, to search.
  • start_location: An optional character position to start searching for expressionToFind in expressionToSearch.

                      SELECT CHARINDEX('456', '0123456');
                      -- Result: 4

                      SELECT CHARINDEX('456', '0123456', 5);
                      -- Result: -1
                    

CHAR_LENGTH(character_expression),

Returns the number of UTF-8 characters present in the expression.

  • character_expression: The set of characters to be evaluated for length.

				 SELECT CHAR_LENGTH('sample text') FROM Account LIMIT 1
				 -- Result: 11			
				

CONCAT(string_value1, string_value2, ..., string_valueN)

Returns the string that is the concatenation of two or more string values.

  • string_value1: The first string to be concatenated.
  • string_value2: The second string to be concatenated.
  • string_valueN: (optional) Any additional strings to be concatenated.

                      SELECT CONCAT('Hello, ', 'world!');
                      -- Result: 'Hello, world!'
                    

CONTAINS(expressionToSearch, expressionToFind)

Returns 1 if expressionToFind is found within expressionToSearch; otherwise, 0.

  • expressionToSearch: The character expression, typically a column, to search.
  • expressionToFind: The character expression to find.

                      SELECT CONTAINS('0123456', '456');
                      -- Result: 1

                      SELECT CONTAINS('0123456', 'Not a number');
                      -- Result: 0
                    

ENDSWITH(character_expression, character_suffix)

Returns 1 if character_expression ends with character_suffix; otherwise, 0.

  • character_expression: The character expression.
  • character_suffix: The character suffix to search for.

                      SELECT ENDSWITH('0123456', '456');
                      -- Result: 1

                      SELECT ENDSWITH('0123456', '012');
                      -- Result: 0
                    

FILESIZE(uri)

Returns the number of bytes present in the file at the specified file path.

  • uri: The path of the file from which to read the size.

				SELECT FILESIZE('C:/Users/User1/Desktop/myfile.txt');
				-- Result: 23684
				

FORMAT(value [, parseFormat], format )

Returns the value formatted with the specified format.

  • value: The string to format.
  • format: The string specifying the output syntax of the date or numeric format.
  • parseFormat: The string specifying the input syntax of the date value. Not applicable to numeric types.

                      SELECT FORMAT(12.34, '#');
                      -- Result: 12

                      SELECT FORMAT(12.34, '#.###');
                      -- Result: 12.34

                      SELECT FORMAT(1234, '0.000E0');
                      -- Result: 1.234E3
                      
                      SELECT FORMAT('2019/01/01', 'yyyy-MM-dd');
                      -- Result: 2019-01-01
                      
                      SELECT FORMAT('20190101', 'yyyyMMdd', 'yyyy-MM-dd');
                      -- Result: '2019-01-01'
                    

HASHBYTES(algorithm, value)

Returns the hash of the input value as a byte array using the given algorithm. The supported algorithms are MD5, SHA1, SHA2_256, SHA2_512, SHA3_224, SHA3_256, SHA3_384, and SHA3_512.

  • algorithm: The algorithm to use for hashing. Must be one of MD5, SHA1, SHA2_256, SHA2_512, SHA3_224, SHA3_256, SHA3_384, or SHA3_512.
  • value: The value to hash. Must be either a string or byte array.

                      SELECT HASHBYTES('MD5', 'Test');
                      -- Result (byte array): 0x0CBC6611F5540BD0809A388DC95A615B
                    

INDEXOF(expressionToSearch, expressionToFind [,start_location ])

Returns the starting position of the specified expression in the character string.

  • expressionToSearch: The character expression, typically a column, to search.
  • expressionToFind: The character expression to find.
  • start_location: An optional character position to start searching for expressionToFind in expressionToSearch.

                      SELECT INDEXOF('0123456', '456');
                      -- Result: 4

                      SELECT INDEXOF('0123456', '456', 5);
                      -- Result: -1
                    

ISALPHABETIC(character_expression)

Returns 1 if the character expression consists only of alphabetic characters; otherwise, 0.

  • character_expression: The string expression to evaluate.

                      SELECT ISALPHABETIC('Hello');
                      -- Result: 1

                      SELECT ISALPHABETIC('Hello123');
                      -- Result: 0

                      SELECT ISALPHABETIC('Hello!');
                      -- Result: 0
                    

ISALPHANUMERIC(character_expression)

Returns 1 if the character expression consists only of alphabetic and numeric characters; otherwise, 0.

  • character_expression: The string expression to evaluate.

                      SELECT ISALPHANUMERIC('Hello123');
                      -- Result: 1

                      SELECT ISALPHANUMERIC('123');
                      -- Result: 1

                      SELECT ISALPHANUMERIC('Hello.123');
                      -- Result: 0
                    

ISNUMERIC(character_expression)

Returns 1 if the character expression consists only of numeric digits and up to one decimal point; otherwise, 0.

  • character_expression: The string expression to evaluate.

                      SELECT ISNUMERIC('123');
                      -- Result: 1

                      SELECT ISNUMERIC('123.45');
                      -- Result: 1

                      SELECT ISNUMERIC('123.45.67');
                      -- Result: 0

                      SELECT ISNUMERIC('12a3');
                      -- Result: 0
                    

JSON_EXTRACT(json, jsonpath)

Selects any value in a JSON array or object. The path to the array is specified in the jsonpath argument. Return value is numeric or null.

  • json: The JSON document to extract.
  • jsonpath: The XPath used to select the nodes. The JSONPath must be a string constant. The values of the nodes selected will be returned in a token-separated list.

                      SELECT JSON_EXTRACT('{"test": {"data": 1}}', '$.test');
                      -- Result: '{"data":1}'

                      SELECT JSON_EXTRACT('{"test": {"data": 1}}', '$.test.data');
                      -- Result: 1

                      SELECT JSON_EXTRACT('{"test": {"data": [1, 2, 3]}}', '$.test.data[1]');
                      -- Result: 2
                    

LEFT ( character_expression , integer_expression )

Returns the specified number of characters counting from the left of the specified string.

  • character_expression: The character expression.
  • integer_expression: The positive integer that specifies how many characters will be returned counting from the left of character_expression.

                      SELECT LEFT('1234567890', 3);
                      -- Result: '123'
                    

LEN(string_expression)

Returns the number of characters of the specified string expression.

  • string_expression: The string expression.

                      SELECT LEN('12345');
                      -- Result: 5
                    

LOCATE(substring,string)

Returns an integer representing how many characters into the string the substring appears.

  • substring: The substring to find inside larger string.
  • string: The larger string that is searched for the substring.
  • start locations: An optional integer that sets the character position (offset) from which to start searching.

				SELECT LOCATE('sample','XXXXXsampleXXXXX');
				-- Result: 6

                SELECT LOCATE('sample', 'XXXXXsampleXXXXX', 7)
                -- Result: 0
				

LOWER ( character_expression )

Returns the character expression with the uppercase character data converted to lowercase.

  • character_expression: The character expression.

                      SELECT LOWER('MIXED case');
                      -- Result: 'mixed case'
                    

LTRIM(character_expression)

Returns the character expression with leading blanks removed.

  • character_expression: The character expression.

                      SELECT LTRIM('     trimmed');
                      -- Result: 'trimmed'
                    

MASK(string_expression, mask_character [, start_index [, end_index ]])

Replaces the characters between start_index and end_index with the mask_character within the string.

  • string_expression: The string expression to be searched.
  • mask_character: The character to mask with.
  • start_index: The optional number of characters to leave unmasked at beginning of string. Defaults to 0.
  • end_index: The optional number of characters to leave unmasked at end of string. Defaults to 0.

                        SELECT MASK('1234567890','*',);
                        -- Result: '**********'
                        SELECT MASK('1234567890','*', 4);
                        -- Result: '1234******'
                        SELECT MASK('1234567890','*', 4, 2);
                        -- Result: '1234****90'  
                    

NCHAR(integer_expression)

Returns the Unicode character with the specified integer code as defined by the Unicode standard.

  • integer_expression: The integer from 0 through 65535 (0 through xFFFF).

OCTET_LENGTH(character_expression),

Returns the number of bytes present in the expression.

  • character_expression: The set of characters to be be evaluated.

				 SELECT OCTET_LENGTH('text') FROM Account LIMIT 1
				 -- Result: 4
				

PATINDEX(pattern, expression)

Returns the starting position of the first occurrence of the pattern in the expression. Returns 0 if the pattern is not found.

  • pattern: The character expression that contains the sequence to be found. The wild-card character % can be used only at the start or end of the expression.
  • expression: The expression, typically a column, to search for the pattern.

                      SELECT PATINDEX('123%', '1234567890');
                      -- Result: 1

                      SELECT PATINDEX('%890', '1234567890');
                      -- Result: 8

                      SELECT PATINDEX('%456%', '1234567890');
                      -- Result: 4
                    

POSITION(expressionToFind IN expressionToSearch)

Returns the starting position of the specified expression in the character string.

  • expressionToFind: The character expression to find.
  • expressionToSearch: The character expression, typically a column, to search.

                      SELECT POSITION('456' IN '123456');
                      -- Result: 4

                      SELECT POSITION('x' IN '123456');
                      -- Result: 0
                    

QUOTENAME(character_string [, quote_character])

Returns a valid SQL Server-delimited identifier by adding the necessary delimiters to the specified Unicode string.

  • character_string: The string of Unicode character data. The string is limited to 128 characters. Inputs greater than 128 characters return null.
  • quote_character: An optional single character to be used as the delimiter. These include:
    • a single quotation mark (')
    • a left or right bracket ([])
    • a double quotation mark (")
    • a left or right parenthesis ( () )
    • a greater or less than sign (><)
    • a left or right brace ({})
    • a backtick (`)

    If quote_character is not specified brackets are used. If an unacceptable character is supplied, it returns NULL.


                      SELECT QUOTENAME('table_name');
                      -- Result: '[table_name]'

                      SELECT QUOTENAME('table_name', '"');
                      -- Result: '"table_name"'

                      SELECT QUOTENAME('table_name', '[');
                      -- Result: '[table_name]'
                    

REGEXP_REPLACE(expr, pattern [, replacement [, position [, occurrence [, match_type]]]])

Replaces occurrences of a regular expression pattern in the input string with a specified value and returns the resulting string.

  • expr: The string expression to be searched.
  • pattern: The regular expression pattern to match.
  • replacement: (optional) The string to replace each matched occurrence of pattern with. Supports backreferences \1 through \9 and escape sequences \n, \r, \t, and \\. By default, this argument is an empty string, meaning matched portions are removed from the output string.
  • position: (optional) The 1-based starting position used when searching for regular expression matches in expr. The default is 1. All characters prior to the starting position are included in the output string unaltered. Skipped characters are ignored when calculating regular expression matches, even if they match pattern.
  • occurrence: (optional) Specifies whether all occurrences of pattern,, or only a specific occurrence of pattern are replaced. The default is 0, which means all occurrences of pattern are replaced with replacement. Set to 1 to only replace the first instance of the pattern; 2 to replace the second; etc.
  • match_type: (optional) Modifiers used to customize matching behavior. Supported values are: 'c' (case-sensitive, default), 'i' (case-insensitive), 'm' (multiline), 'n' (dot matches newline), 'x' (extended mode). These can be freely combined by including the letters back to back. For example, 'im' applies the functionality of both 'i' and 'm'. The regular expression syntax used is that of the Extended mode ('x') ignores whitespace and allows inline comments. If the pattern needs to match a literal space, it must be explicitly escaped.

                      SELECT REGEXP_REPLACE('abc123def456', '\d+', 'NUM');
                      -- Result: 'abcNUMdefNUM'

                      SELECT REGEXP_REPLACE('Hello\nHELLO\nhello', '^hello', 'X', 1, 0, 'im');
                      -- Result: 'X\nX\nX'
                    

REPLACE(string_expression, string_pattern, string_replacement)

Replaces all occurrences of a string with another string.

  • string_expression: The string expression to be searched. This can be a character or binary data type.
  • string_pattern: The substring to be found. Cannot be an empty string.
  • string_replacement: The replacement string.

                      SELECT REPLACE('1234567890', '456', '|');
                      -- Result: '123|7890'

                      SELECT REPLACE('123123123', '123', '.');
                      -- Result: '...'

                      SELECT REPLACE('1234567890', 'a', 'b');
                      -- Result: '1234567890'
                    

REPLICATE ( string_expression ,integer_expression )

Repeats the string value the specified number of times.

  • string_expression: The string to replicate.
  • integer_expression: The repeat count.

                      SELECT REPLACE('x', 5);
                      -- Result: 'xxxxx'
                    

REVERSE ( string_expression )

Returns the reverse order of the string expression.

  • string_expression: The string.

                      SELECT REVERSE('1234567890');
                      -- Result: '0987654321'
                    

RIGHT ( character_expression , integer_expression )

Returns the right part of the string with the specified number of characters.

  • character_expression: The character expression.
  • integer_expression: The positive integer that specifies how many characters of the character expression will be returned.

                      SELECT RIGHT('1234567890', 3);
                      -- Result: '890'
                    

RTRIM(character_expression)

Returns the character expression after it removes trailing blanks.

  • character_expression: The character expression.

                      SELECT RTRIM('trimmed     ');
                      -- Result: 'trimmed'
                    

SOUNDEX(character_expression)

Returns the four-character Soundex code, based on how the string sounds when spoken.

  • character_expression: The alphanumeric expression of character data.

                      SELECT SOUNDEX('smith');
                      -- Result: 'S530'
                    

SPACE(repeatcount)

Returns the string that consists of repeated spaces.

  • repeatcount: The number of spaces.

                      SELECT SPACE(5);
                      -- Result: '     '
                    

SPLIT(string, delimiter, offset)

Returns a section of the string between to delimiters.

  • string: The string to split.
  • delimiter: The character to split the string with.
  • offset: The number of the split to return. Positive numbers are treated as offsets from the left, and negative numbers are treated as offsets from the right.

                      SELECT SPLIT('a/b/c/d', '/', 1);
                      -- Result: 'a'
                      SELECT SPLIT('a/b/c/d', '/', -2);
                      -- Result: 'c'
                    

STARTSWITH(character_expression, character_prefix)

Returns 1 if character_expression starts with character_prefix; otherwise, 0.

  • character_expression: The character expression.
  • character_prefix: The character prefix to search for.

                      SELECT STARTSWITH('0123456', '012');
                      -- Result: 1

                      SELECT STARTSWITH('0123456', '456');
                      -- Result: 0
                    

STR ( float_expression [ , integer_length [ , integer_decimal ] ] )

Returns the character data converted from the numeric data. For example, STR(123.45, 6, 1) returns 123.5.

  • float_expression: The float expression.
  • length: The optional total length to return. This includes decimal point, sign, digits, and spaces. The default is 10.
  • decimal: The optional number of places to the right of the decimal point. The decimal must be less than or equal to 16.

                      SELECT STR('123.456');
                      -- Result: '123'

                      SELECT STR('123.456', 2);
                      -- Result: '**'

                      SELECT STR('123.456', 10, 2);
                      -- Result: '123.46'
                    

STUFF(character_expression , integer_start , integer_length , replaceWith_expression)

Inserts a string into another string. It deletes the specified length of characters in the first string at the start position and then inserts the second string into the first string at the start position.

  • character_expression: The string expression.
  • start: The integer value that specifies the location to start deletion and insertion. If start or length is negative, null is returned. If start is longer than the string to be modified, character_expression, null is returned.
  • length: The integer that specifies the number of characters to delete. If length is longer than character_expression, deletion occurs up to the last character in replaceWith_expression.
  • replaceWith_expression: The expression of character data that will replace length characters of character_expression beginning at the start value.

                      SELECT STUFF('1234567890', 3, 2, 'xx');
                      -- Result: '12xx567890'
                    

SUBSTRING(string_value FROM start FOR length)

Returns the part of the string with the specified length; starts at the specified index.

  • string_value: The character string.
  • start: The positive integer that specifies the start index of characters to return.
  • length: Optional. The positive integer that specifies how many characters will be returned.

                      SELECT SUBSTRING('1234567890' FROM 3 FOR 2);
                      -- Result: '34'

                      SELECT SUBSTRING('1234567890' FROM 3);
                      -- Result: '34567890'
                    
You can also drop the FROM and FOR clauses:
                    SELECT SUBSTRING('1234567890', 3, 2)
                    --Result: '34'
                    SELECT SUBSTRING('1234567890', 3)
                    --Result: '34567890'
                    

TEXT_ENCODE(input_string, charset)

Returns binary output by encoding a string using the specified character set.

  • input_string: The plain text string.
  • charset: The character set to use, such as 'UTF-8', 'ISO-8859-1'.

                    SELECT TEXT_ENCODE('Café', 'UTF-8');
                    -- Result: (binary output)
                    

TEXT_DECODE(input_binary, charset)

Returns a string decoded from binary data using the specified character set.

  • input_binary: The binary value to decode.
  • charset: The character set used for decoding.

                    SELECT TEXT_DECODE(BinaryData, 'UTF-8');
                    -- Result: 'Café'
                    

TOSTRING(string_value1)

Converts the value of this instance to its equivalent string representation.

  • string_value1: The string to be converted.

                      SELECT TOSTRING(123);
                      -- Result: '123'

                      SELECT TOSTRING(123.456);
                      -- Result: '123.456'

                      SELECT TOSTRING(null);
                      -- Result: ''
                    

TRIM(trimspec trimchar FROM string_value)

Returns the character expression with leading and/or trailing blanks removed.

  • trimspec: Optional. If included must be one of the keywords BOTH, LEADING or TRAILING.
  • trimchar: Optional. If included should be a one-character string value.
  • string_value: The string value to trim.

                      SELECT TRIM('     trimmed     ');
                      -- Result: 'trimmed'

                      SELECT TRIM(LEADING FROM '     trimmed     ');
                      -- Result: 'trimmed     '

                      SELECT TRIM('-' FROM '-----trimmed-----');
                      -- Result: 'trimmed'

                      SELECT TRIM(BOTH '-' FROM '-----trimmed-----');
                      -- Result: 'trimmed'

                      SELECT TRIM(TRAILING '-' FROM '-----trimmed-----');
                      -- Result: '-----trimmed'
                    

UNICODE(ncharacter_expression)

Returns the integer value defined by the Unicode standard of the first character of the input expression.

  • ncharacter_expression: The Unicode character expression.

UPPER ( character_expression )

Returns the character expression with lowercase character data converted to uppercase.

  • character_expression: The character expression.

                      SELECT UPPER('MIXED case');
                      -- Result: 'MIXED CASE'
                    

XML_EXTRACT(xml, xpath [, separator])

Extracts an XML document using the specified XPath to flatten the XML. A comma is used to separate the outputs by default, but this can be changed by specifying the third parameter.

  • xml: The XML document to extract.
  • xpath: The XPath used to select the nodes. The nodes selected will be returned in a token-separated list.
  • separator: The optional token used to separate the items in the flattened response. If this is not specified, the separator will be a comma.

                      SELECT XML_EXTRACT('<vowels><ch>a</ch><ch>e</ch><ch>i</ch><ch>o</ch><ch>u</ch></vowels>', '/vowels/ch');
                      -- Result: 'a,e,i,o,u'

                      SELECT XML_EXTRACT('<vowels><ch>a</ch><ch>e</ch><ch>i</ch><ch>o</ch><ch>u</ch></vowels>', '/vowels/ch', ';');
                      -- Result: 'a;e;i;o;u'
                    

CData Python Connector for Microsoft Office 365

MATH Functions

ABS ( numeric_expression )

Returns the absolute (positive) value of the specified numeric expression.

  • numeric_expression: The expression of an indeterminate numeric data type except for the bit data type.

                      SELECT ABS(15);
                      -- Result: 15

                      SELECT ABS(-15);
                      -- Result: 15
                    

ACOS ( float_expression )

Returns the arc cosine, the angle in radians whose cosine is the specified float expression.

  • float_expression: The float expression that specifies the cosine of the angle to be returned. Values outside the range from -1 to 1 return null.

                      SELECT ACOS(0.5);
                      -- Result: 1.0471975511966
                    

ASIN ( float_expression )

Returns the arc sine, the angle in radians whose sine is the specified float expression.

  • float_expression: The float expression that specifies the sine of the angle to be returned. Values outside the range from -1 to 1 return null.

                      SELECT ASIN(0.5);
                      -- Result: 0.523598775598299
                    

ATAN ( float_expression )

Returns the arc tangent, the angle in radians whose tangent is the specified float expression.

  • float_expression: The float expression that specifies the tangent of the angle to be returned.

                      SELECT ATAN(10);
                      -- Result: 1.47112767430373
                    

ATN2 ( float_expression1 , float_expression2 )

Returns the angle in radians between the positive x-axis and the ray from the origin to the point (y, x) where x and y are the values of the two specified float expressions.

  • float_expression1: The float expression that is the y-coordinate.
  • float_expression2: The float expression that is the x-coordinate.

                      SELECT ATN2(1, 1);
                      -- Result: 0.785398163397448
                    

CEILING ( numeric_expression ) or CEIL( numeric_expression )

Returns the smallest integer greater than or equal to the specified numeric expression.

  • numeric_expression: The expression of an indeterminate numeric data type except for the bit data type.

                      SELECT CEILING(1.3);
                      -- Result: 2

                      SELECT CEILING(1.5);
                      -- Result: 2

                      SELECT CEILING(1.7);
                      -- Result: 2
                    

COS ( float_expression )

Returns the trigonometric cosine of the specified angle in radians in the specified expression.

  • float_expression: The float expression of the specified angle in radians.

                      SELECT COS(1);
                      -- Result: 0.54030230586814
                    

COT ( float_expression )

Returns the trigonometric cotangent of the angle in radians specified by float_expression.

  • float_expression: The float expression of the angle in radians.

                      SELECT COT(1);
                      -- Result: 0.642092615934331
                    

DEGREES ( numeric_expression )

Returns the angle in degrees for the angle specified in radians.

  • numeric_expression: The angle in radians, an expression of an indeterminate numeric data type except for the bit data type.

                      SELECT DEGREES(3.1415926);
                      -- Result: 179.999996929531
                    

EXP ( float_expression )

Returns the exponential value of the specified float expression. For example, EXP(LOG(20)) is 20.

  • float_expression: The float expression.

                      SELECT EXP(2);
                      -- Result: 7.38905609893065
                    

EXPR ( expression )

Evaluates the expression.

  • expression: The expression. Operators allowed are +, -, *, /, ==, !=, >, <, >=, and <=.

                      SELECT EXPR('1 + 2 * 3');
                      -- Result: 7

                      SELECT EXPR('1 + 2 * 3 == 7');
                      -- Result: true
                    

FLOOR ( numeric_expression )

Returns the largest integer less than or equal to the numeric expression.

  • numeric_expression: The expression of an indeterminate numeric data type except for the bit data type.

                      SELECT FLOOR(1.3);
                      -- Result: 1

                      SELECT FLOOR(1.5);
                      -- Result: 1

                      SELECT FLOOR(1.7);
                      -- Result: 1
                    

GREATEST(int1,int2,....)

Returns the greatest of the supplied integers.

				SELECT GREATEST(3,5,8,10,1)
				-- Result: 10			
				

HEX(value)

Returns a the equivalent hex for the input value.

  • value: A string or numerical value to be converted into hex.

				SELECT HEX(866849198);
				-- Result: 33AB11AE
				
				SELECT HEX('Sample Text');
				-- Result: 53616D706C652054657874
				

JSON_AVG(json, jsonpath)

Computes the average value of a JSON array within a JSON object. The path to the array is specified in the jsonpath argument. Return value is numeric or null.

  • json: The JSON document to compute.
  • jsonpath: The JSONPath used to select the nodes. [x], [2..], [..8], or [1..12] are accepted. [x] selects all nodes.

                      SELECT JSON_AVG('[1,2,3,4,5]', '$[x]');
                      -- Result: 3

                      SELECT JSON_AVG('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[x]');
                      -- Result: 3

                      SELECT JSON_AVG('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[3..]');
                      -- Result: 4.5
                    

JSON_COUNT(json, jsonpath)

Returns the number of elements in a JSON array within a JSON object. The path to the array is specified in the jsonpath argument. Return value is numeric or null.

  • json: The JSON document to compute.
  • jsonpath: The JSONPath used to select the nodes. [x], [2..], [..8], or [1..12] are accepted. [x] selects all nodes.

                      SELECT JSON_COUNT('[1,2,3,4,5]', '$[x]');
                      -- Result: 5

                      SELECT JSON_COUNT('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[x]');
                      -- Result: 5

                      SELECT JSON_COUNT('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[3..]');
                      -- Result: 2
                    

JSON_MAX(json, jsonpath)

Gets the maximum value in a JSON array within a JSON object. The path to the array is specified in the jsonpath argument. Return value is numeric or null.

  • json: The JSON document to compute.
  • jsonpath: The JSONPath used to select the nodes. [x], [2..], [..8], or [1..12] are accepted. [x] selects all nodes.

                      SELECT JSON_MAX('[1,2,3,4,5]', '$[x]');
                      -- Result: 5

                      SELECT JSON_MAX('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[x]');
                      -- Result: 5

                      SELECT JSON_MAX('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[..3]');
                      -- Result: 4
                    

JSON_MIN(json, jsonpath)

Gets the minimum value in a JSON array within a JSON object. The path to the array is specified in the jsonpath argument. Return value is numeric or null.

  • json: The JSON document to compute.
  • jsonpath: The JSONPath used to select the nodes. [x], [2..], [..8], or [1..12] are accepted. [x] selects all nodes.

                      SELECT JSON_MIN('[1,2,3,4,5]', '$[x]');
                      -- Result: 1

                      SELECT JSON_MIN('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[x]');
                      -- Result: 1

                      SELECT JSON_MIN('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[3..]');
                      -- Result: 4
                    

JSON_SUM(json, jsonpath)

Computes the summary value in JSON according to the JSONPath expression. Return value is numeric or null.

  • json: The JSON document to compute.
  • jsonpath: The JSONPath used to select the nodes. [x], [2..], [..8], or [1..12] are accepted. [x] selects all nodes.

                      SELECT JSON_SUM('[1,2,3,4,5]', '$[x]');
                      -- Result: 15

                      SELECT JSON_SUM('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[x]');
                      -- Result: 15

                      SELECT JSON_SUM('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[3..]');
                      -- Result: 9
                    

LEAST(int1,int2,....)

Returns the least of the supplied integers.

				SELECT LEAST(3,5,8,10,1)
				-- Result: 1			
				

LOG ( float_expression [, base ] )

Returns the natural logarithm of the specified float expression.

  • float_expression: The float expression.
  • base: The optional integer argument that sets the base for the logarithm.

                      SELECT LOG(7.3890560);
                      -- Result: 1.99999998661119
                    

LOG10 ( float_expression )

Returns the base-10 logarithm of the specified float expression.

  • float_expression: The expression of type float.

                      SELECT LOG10(10000);
                      -- Result: 4
                    

MOD(dividend,divisor)

Returns the integer value associated with the remainder when dividing the dividend by the divisor.

  • dividend: The number to take the modulus of.
  • divisor: The number to divide the dividend by when determining the modulus.

				SELECT MOD(10,3);
				-- Result: 1
				

NEGATE(real_number)

Returns the opposite to the real number input.

  • real_number: The real number to find the opposite of.

				SELECT NEGATE(10);
				-- Result: -10
				
				SELECT NEGATE(-12.4)
				--Result: 12.4
				

PI ( )

Returns the constant value of pi.

                  SELECT PI()
                  -- Result: 3.14159265358979 
                

POWER ( float_expression , y )

Returns the value of the specified expression raised to the specified power.

  • float_expression: The float expression.
  • y: The power to raise float_expression to.

                      SELECT POWER(2, 10);
                      -- Result: 1024

                      SELECT POWER(2, -2);
                      -- Result: 0.25
                    

RADIANS ( float_expression )

Returns the angle in radians of the angle in degrees.

  • float_expression: The degrees of the angle as a float expression.

                      SELECT RADIANS(180);
                      -- Result: 3.14159265358979
                    

RAND ( [ integer_seed ] )

Returns a pseudorandom float value from 0 through 1, exclusive.

  • seed: The optional integer expression that specifies the seed value. If seed is not specified, a seed value at random will be assigned.

                      SELECT RAND();
                      -- This result may be different, since the seed is randomized
                      -- Result: 0.873159630165044

                      SELECT RAND(1);
                      -- This result will always be the same, since the seed is constant
                      -- Result: 0.248668584157093
                    

ROUND ( numeric_expression [ ,integer_length] [ ,function ] )

Returns the numeric value rounded to the specified length or precision.

  • numeric_expression: The expression of a numeric data type.
  • length: The optional precision to round the numeric expression to. When this is omitted, the default behavior will be to round to the nearest whole number.
  • function: The optional type of operation to perform. When the function parameter is omitted or has a value of 0 (default), numeric_expression is rounded. When a value other than 0 is specified, numeric_expression is truncated.

                      SELECT ROUND(1.3, 0);
                      -- Result: 1

                      SELECT ROUND(1.55, 1);
                      -- Result: 1.6

                      SELECT ROUND(1.7, 0, 0);
                      -- Result: 2

                      SELECT ROUND(1.7, 0, 1);
                      -- Result: 1
                      
                      SELECT ROUND (1.24);
                      -- Result: 1.0
                    

SIGN ( numeric_expression )

Returns the positive sign (1), 0, or negative sign (-1) of the specified expression.

  • numeric_expression: The expression of an indeterminate data type except for the bit data type.

                      SELECT SIGN(0);
                      -- Result: 0

                      SELECT SIGN(10);
                      -- Result: 1

                      SELECT SIGN(-10);
                      -- Result: -1
                    

SIN ( float_expression )

Returns the trigonometric sine of the angle in radians.

  • float_expression: The float expression specifying the angle in radians.

                     SELECT SIN(1);
                     -- Result: 0.841470984807897
                    

SQRT ( float_expression )

Returns the square root of the specified float value.

  • float_expression: The expression of type float.

                      SELECT SQRT(100);
                      -- Result: 10
                    

SQUARE ( float_expression )

Returns the square of the specified float value.

  • float_expression: The expression of type float.

                      SELECT SQUARE(10);
                      -- Result: 100

                      SELECT SQUARE(-10);
                      -- Result: 100
                    

TAN ( float_expression )

Returns the tangent of the input expression.

  • float_expression: The expression of type float.

                      SELECT TAN(1);
                      -- Result: 1.5574077246549
                    

TRUNC(decimal_number,precision)

Returns the supplied decimal number truncated to have the supplied decimal precision.

  • decimal_number: The decimal value to truncate.
  • precision: The number of decimal places to truncate the decimal number to.

				SELECT TRUNC(10.3423,2);
				-- Result: 10.34
				

_ROW_NUMBER_()

Returns a row index as an additional column.

				SELECT ColumnName, _ROW_NUMBER_() FROM TableName
				-- Result: ColumnData, 0
				ColumnData2, 1
				ColumnData3, 2
				

CData Python Connector for Microsoft Office 365

DATE Functions

CURRENT_DATE()

Returns the current date value.

                  SELECT CURRENT_DATE();
                  -- Result: 2018-02-01
                

CURRENT_TIMESTAMP()

Returns the current time stamp of the database system as a datetime value. This value is equal to GETDATE and SYSDATETIME, and is always in the local timezone.

                  SELECT CURRENT_TIMESTAMP();
                  -- Result: 2018-02-01 03:04:05
                

DATEADD (datepart , integer_number , date [, dateformat])

Returns the datetime value that results from adding the specified number (a signed integer) to the specified date part of the date.

  • datepart: The part of the date to add the specified number to. The valid values and abbreviations are
    • year (yy, yyyy)
    • quarter (qq, q)
    • month (mm, m)
    • week (wk, ww)
    • weekday (dw)
    • dayofyear (dy, y)
    • day (dd, d)
    • hour (hh)
    • minute (mi, n)
    • second (ss, s)
    • millisecond (ms)
  • number: The number to be added.
  • date: The expression of the datetime data type.
  • dateformat: The optional output date format.

                  SELECT DATEADD('d', 5, '2018-02-01');
                  -- Result: 2018-02-06

                  SELECT DATEADD('hh', 5, '2018-02-01 00:00:00');
                  -- Result: 2018-02-01 05:00:00
                

DATEDIFF ( datepart , startdate , enddate )

Returns the difference (a signed integer) of the specified time interval between the specified start date and end date.

  • datepart: The part of the date that is the time interval of the difference between the start date and end date. The valid values and abbreviations are:
    • Year (year, yyyy, yy)
    • Quarter (quarter, qq, q)
    • Month (month, mm, m)
    • Week (week, wk, ww)
    • Weekday (weekday, dw)
    • Dayofyear (dayofyear, dy, y)
    • Day (day, dd, d)
    • Hour (hour, hh)
    • Minute (minute, mi, n)
    • Second (second, ss, s)
    • Millisecond (millisecond, ms)
  • startdate: The datetime expression of the start date.
  • enddate: The datetime expression of the end date.

                  SELECT DATEDIFF('d', '2018-02-01', '2018-02-10');
                  -- Result: 9

                  SELECT DATEDIFF('hh', '2018-02-01 00:00:00', '2018-02-01 12:00:00');
                  -- Result: 12
                

DATE_FORMAT(date,format)

Returns the date or timestamp in the format specified. This function mirrors the MySQL DATE_FORMAT function.

  • date: A date or timestamp string.
  • format: The specifier string of the desired output format. The list of supported format specifiers comes from the MySQL DATE_FORMAT function (see link to MySQL documentation above).

					SELECT DATE_FORMAT('9/4/2021 3:11:53 AM','%h')
					-- Result: 03
				  

DATEFROMPARTS(integer_year, integer_month, integer_day)

Returns the datetime value for the specified year, month, and day.

  • year: The integer expression specifying the year.
  • month: The integer expression specifying the month.
  • day: The integer expression specifying the day.

                    SELECT DATEFROMPARTS(2018, 2, 1);
                    -- Result: 2018-02-01
                  

DATENAME(datepart , date)

Returns the character string that represents the specified date part of the specified date.

  • datepart: The part of the date to return. The valid values and abbreviations are year (yy, yyyy), quarter (qq, q), month (mm, m), dayofyear (dy, y), day (dd, d), week (wk, ww), weekday (dw), hour (hh), minute (mi, n), second (ss, s), millisecond (ms), microsecond (mcs), and nanosecond (ns).
  • date: The datetime expression.

                     SELECT DATENAME('yy', '2018-02-01');
                     -- Result: '2018'

                     SELECT DATENAME('dw', '2018-02-01');
                     -- Result: 'Thursday'
                   

DATEPART(datepart, date [,integer_datefirst])

Returns a character string that represents the specified date part of the specified date.

  • datepart: The part of the date to return. The valid values and abbreviations are year (yy, yyyy), quarter (qq, q), month (mm, m), dayofyear (dy, y), day (dd, d), week (wk, ww), weekday (dw), hour (hh), minute (mi, n), second (ss, s), millisecond (ms), microsecond (mcs), nanosecond (ns), ISODOW, ISO_WEEK (isoweek, isowk,isoww), and ISOYEAR.
  • date: The datetime string.
  • datefirst: The optional integer representing the first day of the week. The default is 7, Sunday.

                    SELECT DATEPART('yy', '2018-02-01');
                    -- Result: 2018

                    SELECT DATEPART('dw', '2018-02-01');
                    -- Result: 5
                  

DATETIMEFROMPARTS(integer_year, integer_month, integer_day, integer_hour, integer_minute, integer_seconds, integer_milliseconds)

Returns the datetime value for the specified date parts.

  • year: The integer expression specifying the year.
  • month: The integer expression specifying the month.
  • day: The integer expression specifying the day.
  • hour: The integer expression specifying the hour.
  • minute: The integer expression specifying the minute.
  • seconds: The integer expression specifying the seconds.
  • milliseconds: The integer expression specifying the milliseconds.

                    SELECT DATETIMEFROMPARTS(2018, 2, 1, 1, 2, 3, 456);
                    -- Result: 2018-02-01 01:02:03.456
                  

DATETIME2FROMPARTS(integer_year, integer_month, integer_day, integer_hour, integer_minute, integer_seconds, integer_fractions, integer_precision)

Returns the datetime value for the specified date parts.

  • year: The integer expression specifying the year.
  • month: The integer expression specifying the month.
  • day: The integer expression specifying the day.
  • hour: The integer expression specifying the hour.
  • minute: The integer expression specifying the minute.
  • seconds: The integer expression specifying the seconds.
  • fractions: The integer expression specifying the fractions of the second.
  • precision: The integer expression specifying the precision of the fraction.

				    SELECT DATETIME2FROMPARTS(2018, 2, 1, 1, 2, 3, 456, 3);
                    -- Result: 2018-02-01 01:02:03.456
                  

DATE_TRUNC(date, datepart)

Truncates the date to the precision of the given date part. Modeled after the Oracle TRUNC function.

  • date: The datetime string that specifies the date.
  • datepart: Refer to the Oracle documentation for valid datepart syntax.

				    SELECT DATE_TRUNC('05-04-2005', 'YY');
                    -- Result: '1/1/2005'
					
                    SELECT DATE_TRUNC('05-04-2005', 'MM');
                    -- Result: '5/1/2005'                    
                  

DATE_TRUNC2(datepart, date, [weekday])

Truncates the date to the precision of the given date part. Modeled after the PostgreSQL date_trunc function.

  • datepart: One of 'millennium', 'century', 'decade', 'year', 'quarter', 'month', 'week', 'day', 'hour', 'minute' or 'second'.
  • date: The datetime string that specifies the date.
  • weekday: The optional day of the week to use as the first day for 'week'. One of 'sunday', 'monday', etc.

                    SELECT DATE_TRUNC2('year', '2020-02-04');
                    -- Result: '2020-01-01'

                    SELECT DATE_TRUNC2('week', '2020-02-04', 'monday');
                    -- Result: '2020-02-02', which is the previous Monday
                  

DAY(date)

Returns the integer that specifies the day component of the specified date.

  • date: The datetime string that specifies the date.

                    SELECT DAY('2018-02-01');
                    -- Result: 1
                  

DAYNAME(date)

Returns the name of the day of the week of the specified date.

  • date: The datetime string that specifies the date.

                    SELECT DAYNAME('8/18/2021');
                    -- Result: Wednesday
                  

DAYOFMONTH(date)

Returns the day of the month of the given date part.
  • date: The datetime string that specifies the date.

				  SELECT DAYOFMONTH('04/15/2000');
				  -- Result: 15
				  

DAYOFWEEK(date)

Returns the day of the week of the given date part.
  • date: The datetime string that specifies the date.

				  SELECT DAYOFWEEK('04/15/2000');
				  -- Result: 7
				  

DAYOFYEAR(date)

Returns the day of the year of the given date part.
  • date: The datetime string that specifies the date.

				  SELECT DAYOFYEAR('04/15/2000');
				  -- Result: 106
				  

EOMONTH(date [, integer_month_to_add ]) or LAST_DAY(date)

Returns the last day of the month that contains the specified date with an optional offset.

  • date: The datetime expression specifying the date for which to return the last day of the month.
  • integer_month_to_add: The optional integer expression specifying the number of months to add to the date before calculating the end of the month.

                  SELECT EOMONTH('2018-02-01');
                  -- Result: 2018-02-28
                  
                  SELECT LAST_DAY('2018-02-01');
                  -- Result: 2018-02-28

                  SELECT EOMONTH('2018-02-01', 2);
                  -- Result: 2018-04-30
                

EXTRACT(date_part FROM date_column_name)

Returns the last day of the month that contains the specified date with an optional offset.

  • date_part: One of the following date components: YEAR, MONTH, DAY, HOUR, MINUTE, SECOND.
  • date_column_name: The name of a date column in a table.

                  SELECT EXTRACT(YEAR FROM DateColumn)
                  -- Result: 2021
                

FDWEEK(date)

Returns the first day of the week of the given date part.
  • date: The datetime string that specifies the date.
  • weeks to add: An optional integer expression specifying the number of months to add to the date before calculating the first day of the week.

				  SELECT FDWEEK('02-08-2018');
				  -- Result: 2/4/2018

          SELECT FDWEEK('02-08-2018', 1)
          --Result: 02/11/2018
				  

FDMONTH(date)

Returns the first day of the month of the given date part.
  • date: The datetime string that specifies the date.
  • month to add: An optional integer expression specifying the number of months to add to the date before calculating the first day of the month.

				  SELECT FDMONTH('02-08-2018');
				  -- Result: 2/1/2018

          SELECT FDMONTH('02-08-2018', 1) 
          --Result: 03/01/2018
				  

FDQUARTER(date)

Returns the first day of the quarter of the given date part.
  • date: The datetime string that specifies the date.
  • quarters to add: An optional integer expression specifying the number of months to add to the date before calculating the first day of the quarter.

				  SELECT FDQUARTER('05-08-2018');
				  -- Result: 4/1/2018

          SELECT FDQUARTER('05-08-2018',1)
          --Result: 07/01/2018
				  

FILEMODIFIEDTIME(uri)

Returns the time stamp associated with the Date Modified of the relevant file.

  • uri: An absolute path pointing to a file on the local file system.

				 SELECT FILEMODIFIEDTIME('C:/Documents/myfile.txt');
				 -- Result: 6/25/2019 10:06:58 AM
				 

FROM_DAYS(datevalue)

Returns a date derived from the number of days after 1582-10-15 (based upon the Gregorian calendar). This will be equivalent to the MYSQL FROM_DAYS function.

  • datevalue: A integer value representing the number of days since 1582-10-15.

				SELECT FROM_DAYS(736000);
				-- Result: 2/6/2015
				

FROM_UNIXTIME(time, issecond)

Returns a representation of the unix_timestamp argument as a value in YYYY-MM-DD HH:MM:SS expressed in the current time zone.

  • time: The time stamp value from epoch time. Milliseconds are accepted.
  • issecond: Indicates the time stamp value is milliseconds to epoch time.

                      SELECT FROM_UNIXTIME(1540495231, 1);
                      -- Result: 2018-10-25 19:20:31

                      SELECT FROM_UNIXTIME(1540495357385, 0);
                      -- Result: 2018-10-25 19:22:37
                    

GETDATE()

Returns the current time stamp of the database system as a datetime value. This value is equal to CURRENT_TIMESTAMP and SYSDATETIME, and is always in the local timezone.

                  SELECT GETDATE();
                  -- Result: 2018-02-01 03:04:05
                

GETUTCDATE()

Returns the current time stamp of the database system formatted as a UTC datetime value. This value is equal to SYSUTCDATETIME.

In addition, GETUTCDATE can take an optional second parameter, a date and time that are converted to UTC.

                  SELECT GETUTCDATE();
                  -- For example, if the local timezone is Eastern European Time (GMT+2)
                  -- Result: 2018-02-01 05:04:05

                  SELECT GETUTCDATE('2020/08/31 13:56:00')
                  --Result: '2020-08-31 17:56:00'
                

HOUR(date)

Returns the hour component from the provided datetime.

  • date: The datetime string that specifies the date.

				SELECT HOUR('02-02-2020 11:30:00');
				-- Result: 11
				

ISDATE(date, [date_format])

Returns 1 if the value is a valid date, time, or datetime value; otherwise, 0.

  • date: The datetime string.
  • date_format: The optional datetime format.

                      SELECT ISDATE('2018-02-01', 'yyyy-MM-dd');
                      -- Result: 1

                      SELECT ISDATE('Not a date');
                      -- Result: 0
                    

LAST_WEEK()

Returns a time stamp equivalent to exactly one week before the current date.

				SELECT LAST_WEEK();	//Assume the date is 3/17/2020	
			 -- Result: 3/10/2020 00:00:00
				

LAST_MONTH()

Returns a time stamp equivalent to exactly one month before the current date.

	
				SELECT LAST_MONTH(); //Assume the date is 3/17/2020
				-- Result: 2/17/2020 00:00:00
				

LAST_YEAR()

Returns a time stamp equivalent to exactly one year before the current date.

				SELECT LAST_YEAR();	//Assume the date is 3/17/2020	
				-- Result: 3/10/2019 00:00:00
				

LDWEEK(date)

Returns the last day of the provided week.

  • date: The datetime string.
  • weeks to add: An optional integer expression specifying the number of months to add to the date before calculating the last day of the week.

				SELECT LDWEEK('02-02-2020');
				-- Result: 2/8/2020
				

LDMONTH(date)

Returns the last day of the provided month.

  • date: The datetime string.
  • months to add: An optional integer expression specifying the number of months to add to the date before calculating the last day of the month.

				SELECT LDMONTH('02-02-2020');
				-- Result: 2/29/2020

        SELECT LDMONTH('02-08-2020', 1)
        --Result: 03/31/2020
				

LDQUARTER(date)

Returns the last day of the provided quarter.

  • date: The datetime string.
  • quarters to add: An optional integer expression specifying the number of months to add to the date before calculating the last day of the quarter.

				SELECT LDQUARTER('02-02-2020');
				-- Result: 3/31/2020

        SELECT LDQUARTER('02-02-2020',1)
        --Result: 06/30/2020
				

MAKEDATE(year, days)

Returns a date value from a year and a number of days.

  • year: The year
  • days: The number of days into the year. Value must be greater than 0.

          SELECT MAKEDATE(2020, 1);
          -- Result: 2020-01-01
        

MINUTE(date)

Returns the minute component from the provided datetime.

  • date: The datetime string that specifies the date.

				SELECT MINUTE('02-02-2020 11:15:00');
				-- Result: 15
				

MONTH(date)

Returns the month component from the provided datetime.

  • date: The datetime string that specifies the date.

				SELECT MONTH('02-02-2020');
				-- Result: 2
				

QUARTER(date)

Returns the quarter associated with the provided datetime.

  • date: The datetime string that specifies the date.

				SELECT QUARTER('02-02-2020');
				-- Result: 1
				

SECOND(date)

Returns the second component from the provided datetime.

  • date: The datetime string that specifies the date.

				SELECT SECOND('02-02-2020 11:15:23');
				-- Result: 23
				

SMALLDATETIMEFROMPARTS(integer_year, integer_month, integer_day, integer_hour, integer_minute)

Returns the datetime value for the specified date and time.

  • year: The integer expression specifying the year.
  • month: The integer expression specifying the month.
  • day: The integer expression specifying the day.
  • hour: The integer expression specifying the hour.
  • minute: The integer expression specifying the minute.

                      SELECT SMALLDATETIMEFROMPARTS(2018, 2, 1, 1, 2);
                      -- Result: 2018-02-01 01:02:00
                    

STRTODATE(string,format)

Parses the provided string value and returns the corresponding datetime.

  • string: The string value to be converted to datetime format.
  • format: A format string which describes how to interpret the first string input. A few special formats are available as well, including UNIX, UNIXMILIS, TICKS, and FILETICKS.

				SELECT STRTODATE('03*04*2020','dd*MM*yyyy');
				-- Result: 4/3/2020
				

SYSDATETIME()

Returns the current time stamp as a datetime value of the database system. It is equal to GETDATE and CURRENT_TIMESTAMP, and is always in the local timezone.

                  SELECT SYSDATETIME();
                  -- Result: 2018-02-01 03:04:05
                

SYSUTCDATETIME()

Returns the current system date and time as a UTC datetime value. It is equal to GETUTCDATE.

                  SELECT SYSUTCDATETIME();
                  -- For example, if the local timezone is Eastern European Time (GMT+2)
                  -- Result: 2018-02-01 05:04:05
                

TIMEFROMPARTS(integer_hour, integer_minute, integer_seconds, integer_fractions, integer_precision)

Returns the time value for the specified time and with the specified precision.

  • hour: The integer expression specifying the hour.
  • minute: The integer expression specifying the minute.
  • seconds: The integer expression specifying the seconds.
  • fractions: The integer expression specifying the fractions of the second.
  • precision : The integer expression specifying the precision of the fraction.

                      SELECT TIMEFROMPARTS(1, 2, 3, 456, 3);
                      -- Result: 01:02:03.456
                    

TO_DAYS(date)

Returns the number of days since 0000-00-01. This will only return a value for dates on or after 1582-10-15 (based upon the Gregorian calendar). This will be equivalent to the MYSQL TO_DAYS function.

  • date: The datetime string that specifies the date.

				SELECT TO_DAYS('02-06-2015');
				-- Result: 736000
				

WEEK(date)

Returns the week (of the year) associated with the provided datetime.

  • date: The datetime string that specifies the date.

				SELECT WEEK('02-17-2020 11:15:23');
				-- Result: 8
				

YEAR(date)

Returns the integer that specifies the year of the specified date.

  • date: The datetime string.

                      SELECT YEAR('2018-02-01');
                      -- Result: 2018
                    

CData Python Connector for Microsoft Office 365

Date Literal Functions

The following date literal functions can be used to filter date fields using relative intervals. Note that while the <, >, and = operators are supported for these functions, <= and >= are not.

L_TODAY()

The current day.

  SELECT * FROM MyTable WHERE MyDateField = L_TODAY()

L_YESTERDAY()

The previous day.

  SELECT * FROM MyTable WHERE MyDateField = L_YESTERDAY()

L_TOMORROW()

The following day.

  SELECT * FROM MyTable WHERE MyDateField = L_TOMORROW()

L_LAST_WEEK()

Every day in the preceding week.

  SELECT * FROM MyTable WHERE MyDateField = L_LAST_WEEK()

L_THIS_WEEK()

Every day in the current week.

  SELECT * FROM MyTable WHERE MyDateField = L_THIS_WEEK()

L_NEXT_WEEK()

Every day in the following week.

  SELECT * FROM MyTable WHERE MyDateField = L_NEXT_WEEK()
Also available:
  • L_LAST/L_THIS/L_NEXT MONTH
  • L_LAST/L_THIS/L_NEXT QUARTER
  • L_LAST/L_THIS/L_NEXT YEAR

L_LAST_N_DAYS(n)

The previous n days, excluding the current day.

  SELECT * FROM MyTable WHERE MyDateField = L_LAST_N_DAYS(3)

L_NEXT_N_DAYS(n)

The following n days, including the current day.

  SELECT * FROM MyTable WHERE MyDateField = L_NEXT_N_DAYS(3)
Also available:
  • L_LAST/L_NEXT_90_DAYS

L_LAST_N_WEEKS(n)

Every day in every week, starting n weeks before current week, and ending in the previous week.

  SELECT * FROM MyTable WHERE MyDateField = L_LAST_N_WEEKS(3)

L_NEXT_N_WEEKS(n)

Every day in every week, starting the following week, and ending n weeks in the future.

  SELECT * FROM MyTable WHERE MyDateField = L_NEXT_N_WEEKS(3)
Also available:
  • L_LAST/L_NEXT_N_MONTHS(n)
  • L_LAST/L_NEXT_N_QUARTERS(n)
  • L_LAST/L_NEXT_N_YEARS(n)

CData Python Connector for Microsoft Office 365

SELECT Statements

A SELECT statement can consist of the following basic clauses.

  • SELECT
  • INTO
  • FROM
  • JOIN
  • WHERE
  • GROUP BY
  • HAVING
  • UNION
  • ORDER BY
  • LIMIT

SELECT Syntax

The following syntax diagram outlines the syntax supported by the SQL engine of the connector:

SELECT {
  [ TOP <numeric_literal> | DISTINCT ]
  { 
    * 
    | { 
        <expression> [ [ AS ] <column_reference> ] 
        | { <table_name> | <correlation_name> } .* 
      } [ , ... ] 
  }
  { 
    FROM <table_reference> [ [ AS ] <identifier> ] 
  } [ , ... ]
  [ [  
      INNER | { { LEFT | RIGHT | FULL } [ OUTER ] } 
    ] JOIN <table_reference> [ ON <search_condition> ] [ [ AS ] <identifier> ] 
  ] [ ... ] 
  [ WHERE <search_condition> ]
  [ GROUP BY <column_reference> [ , ... ]
  [ HAVING <search_condition> ]
  [ UNION [ ALL ] <select_statement> ]
  [ 
    ORDER BY 
    <column_reference> [ ASC | DESC ] [ NULLS FIRST | NULLS LAST ]
  ]
  [ 
    LIMIT <expression>
    [ 
      { OFFSET | , }
      <expression> 
    ]
  ] 
} | SCOPE_IDENTITY() 

<expression> ::=
  | <column_reference>
  | @ <parameter> 
  | ?
  | COUNT( * | { [ DISTINCT ] <expression> } )
  | { AVG | MAX | MIN | SUM | COUNT } ( <expression> ) 
  | NULLIF ( <expression> , <expression> ) 
  | COALESCE ( <expression> , ... ) 
  | CASE <expression>
      WHEN { <expression> | <search_condition> } THEN { <expression> | NULL } [ ... ]
    [ ELSE { <expression> | NULL } ]
    END 
  | {RANK() | DENSE_RANK()} OVER ([PARTITION BY <column_reference>] {ORDER BY <column_reference>})
  | <literal>
  | <sql_function> 

<search_condition> ::= 
  {
    <expression> { = | > | < | >= | <= | <> | != | LIKE | NOT LIKE | IN | NOT IN | IS NULL | IS NOT NULL | AND | OR | CONTAINS | BETWEEN | IS DISTINCT FROM | IS NOT DISTINCT FROM } [ <expression> ]
  } [ { AND | OR } ... ] 

Examples

  1. Return all columns:
    SELECT * FROM Events
  2. Rename a column:
    SELECT [location_displayName] AS MY_location_displayName FROM Events
  3. Cast a column's data as a different data type:
    SELECT CAST(Reminder AS VARCHAR) AS Str_Reminder FROM Events
  4. Search data:
    SELECT * FROM Events WHERE Id = 'Jq74mCczmFXk1tC10GB'
  5. Return the number of items matching the query criteria:
    SELECT COUNT(*) AS MyCount FROM Events 
  6. Return the number of unique items matching the query criteria:
    SELECT COUNT(DISTINCT location_displayName) FROM Events 
  7. Return the unique items matching the query criteria:
    SELECT DISTINCT location_displayName FROM Events 
  8. Sort a result set in ascending order:
    SELECT Id, location_displayName FROM Events  ORDER BY location_displayName ASC
  9. Restrict a result set to the specified number of rows:
    SELECT Id, location_displayName FROM Events LIMIT 10 
  10. Parameterize a query to pass in inputs at execution time. This enables you to create prepared statements and mitigate SQL injection attacks.
    SELECT * FROM Events WHERE Id = @param
See Explicitly Caching Data for information on using the SELECT statement in offline mode.

Pseudo Columns

Some input-only fields are available in SELECT statements. These fields, called pseudo columns, do not appear as regular columns in the results, yet may be specified as part of the WHERE clause. You can use pseudo columns to access additional features from Microsoft Office 365.

    SELECT * FROM Events WHERE Pseudo = '@Pseudo'
    

Aggregate Functions

For SELECT examples using aggregate functions, see Aggregate Functions.

JOIN Queries

See JOIN Queries for SELECT query examples using JOINs.

Date Literal Functions

Date Literal Functions contains SELECT examples with date literal functions.

Window Functions

See Window Functions for SELECT examples containing window functions.

Table-Valued Functions

See Table-Valued Functions for SELECT examples with table-valued functions.

CData Python Connector for Microsoft Office 365

Aggregate Functions

COUNT

Returns the number of rows matching the query criteria.

SELECT COUNT(*) FROM Events WHERE Id = 'Jq74mCczmFXk1tC10GB'

COUNT(DISTINCT)

Returns the number of distinct, non-null field values matching the query criteria.

SELECT COUNT(DISTINCT Id) AS DistinctValues FROM Events WHERE Id = 'Jq74mCczmFXk1tC10GB'

AVG

Returns the average of the column values.

SELECT location_displayName, AVG(Reminder) FROM Events WHERE Id = 'Jq74mCczmFXk1tC10GB'  GROUP BY location_displayName

MIN

Returns the minimum column value.

SELECT MIN(Reminder), location_displayName FROM Events WHERE Id = 'Jq74mCczmFXk1tC10GB' GROUP BY location_displayName

MAX

Returns the maximum column value.

SELECT location_displayName, MAX(Reminder) FROM Events WHERE Id = 'Jq74mCczmFXk1tC10GB' GROUP BY location_displayName

SUM

Returns the total sum of the column values.

SELECT SUM(Reminder) FROM Events WHERE Id = 'Jq74mCczmFXk1tC10GB'

CData Python Connector for Microsoft Office 365

JOIN Queries

The CData Python Connector for Microsoft Office 365 supports standard SQL joins like the following examples.

Inner Join

An inner join selects only rows from both tables that match the join condition:

SELECT Groups.displayName, Conversations.Topic FROM Groups, Conversations WHERE Groups.Id=Conversations.GroupId

Left Join

A left join selects all rows in the FROM table and only matching rows in the JOIN table:

SELECT Groups.displayName, Conversations.Topic FROM Groups LEFT OUTER JOIN Conversations ON Groups.Id=Conversations.GroupId

CData Python Connector for Microsoft Office 365

Window Functions

Window functions allow you to create computed fields from a group of rows (a window) that return a result for each row, as opposed to one computed result for a set of rows, as is the case with aggregate functions. The connector supports the following window function syntax.

Note: Window function support is an experimental feature of the connector. This functionality extends beyond the connector's core scope of being SQL-92 compliant. As such, performance with window functions may not be optimal.

Window Function Clauses

OVER

The OVER clause defines the window over which window functions are performed.

SELECT A, B, <window function> OVER (<window frame>) FROM TableName

The <window function> refers to any supported window function clause, and the <window frame> refers to one or more clauses that specify the logic by which the window is defined.

PARTITION BY

The PARTITION BY clause subdivides a window into sub-windows called partitions. For each unique value in the column specified in the PARTITION BY clause, every record with that value collectively forms an individual partition.

SELECT A, B, <window function> OVER (PARTITION BY A ORDER BY B) From Events

The <window function> refers to any supported window function clause.

Window Functions

The connector supports math, ranking, and analytic window functions.

Math

These window functions perform mathematical operations on the records within the window.

COUNT()

Calculates the number of records in each partition. The calculated column is of the data type "int".

In each partition, every record will display the total number of records in that partition.

SELECT Name, Role, Earnings, COUNT() OVER (PARTITION BY Role) FROM Employees

COUNT_BIG()

Calculates the number of records in each partition. The calculated column is of the data type "bigint".

In each partition, every record will display the total number of records in that partition.

SELECT Name, Role, Earnings, COUNT_BIG() OVER (PARTITION BY Role) FROM Employees

MIN(numeric_column)

Calculates the minimum value of a numerical column per partition.

In each partition, every record will display the minimum value of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, MIN(Earnings) OVER (PARTITION BY Role) FROM Employees

MAX(numeric_column)

Calculates the maximum value of a numerical column per partition.

In each partition, every record will display the maximum value of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, MAX(Earnings) OVER (PARTITION BY Role) FROM Employees

SUM(numeric_column)

Calculates the sum of a numerical column per partition.

In each partition, every record will display the sum of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, SUM(Earnings) OVER (PARTITION BY Role) FROM Employees

AVG(numeric_column)

Calculates the average value of a numerical column per partition.

In each partition, every record will display the average value of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, AVG(Earnings) OVER (PARTITION BY Role) FROM Employees

MEDIAN(numeric_column)

Calculates the median value of a numerical column per partition.

In each partition, every record will display the median value of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, MEDIAN(Earnings) OVER (PARTITION BY Role) FROM Employees

STDEV(numeric_column)

Calculates the standard deviation of a numerical column per partition.

In each partition, every record will display the standard deviation of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, STDEV(Earnings) OVER (PARTITION BY Role) FROM Employees

STDEVP(numeric_column)

Calculates the population standard deviation of a numerical column per partition.

In each partition, every record will display the population standard deviation of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, STDEVP(Earnings) OVER (PARTITION BY Role) FROM Employees

VAR(numeric_column)

Calculates the statistical standard variance of a numerical column per partition.

In each partition, every record will display the statistical standard variance of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, VAR(Earnings) OVER (PARTITION BY Role) FROM Employees

VARP(numeric_column)

Calculates the variance population of a numerical column per partition.

In each partition, every record will display the variance population of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, VARP(Earnings) OVER (PARTITION BY Role) FROM Employees

Ranking

These window functions rank records that fall within the window and its partitions.

RANK()

Assigns a rank number to each record in a window based on the value of the column specified in the required ORDER BY clause.

If two or more records have an equal value in the in ranked column, they all receive the same rank number and the rank count increments internally, skipping ahead one rank number for each record with a duplicate value in the ORDER BY column.

SELECT Id, location_displayName, RANK() OVER (ORDER BY location_displayName) AS Rank FROM Events

If you add a PARTITION BY clause, a separate set of ranks is calculated for each partition.

SELECT Id, location_displayName, RANK() OVER (PARTITION BY Id ORDER BY location_displayName) AS Rank FROM Events

DENSE_RANK()

Operates like the RANK() function, but it doesn't increment the internal rank counter for each record with a duplicate value in the ranked column.

This means that, while records with identical values in the ORDER BY column still share a rank number, the function never skips a rank number.

SELECT Id, location_displayName, DENSE_RANK() OVER (PARTITION BY Id ORDER BY location_displayName) AS Rank FROM Events

If you add a PARTITION BY clause, a separate set of ranks is calculated for each partition.

SELECT Id, location_displayName, DENSE_RANK() OVER (PARTITION BY Id ORDER BY location_displayName) AS Rank FROM Events

ROW_NUMBER()

Calculates a row number for each record. An ORDER BY clause in the OVER clause is required.

SELECT Name, Role, Earnings, ROW_NUMBER() OVER (ORDER BY Role) FROM Employees
If you define multiple partitions with PARTITION BY, a new set of row numbers are calculated for each partition.
SELECT Name, Role, Earnings, ROW_NUMBER() OVER (PARTITION BY Role ORDER BY Earnings) FROM Employees

NTILE()

Distributes rows of an ordered partition into a specified number of approximately equal groups, or buckets. It assigns each group a bucket number starting from one. For each row in a group, the NTILE() function assigns a bucket number representing the group to which the row belongs.

The syntax of NTILE() is:

NTILE(buckets) OVER (
    [PARTITION BY partition_expression, ... ]
    ORDER BY sort_expression [ASC | DESC], ...
)
The following are paramaters that NTILE() supports:

  • buckets: The number of buckets into which the rows are divided. The buckets can be an expression or subquery that evaluates to a positive integer. It cannot be a window function.
  • PARTITION BY: distributes rows of a result set into partitions to which the NTILE() function is applied.
  • ORDER BY is clause that specifies the logical order of rows in each partition to which the NTILE() is applied.

If the number of rows is not divisible by the buckets, the NTILE() function returns groups of two sizes with the difference by one. The larger groups always precede the smaller group in the order set by ORDER BY in the OVER() clause.

If the total of rows is divisible by the number of buckets, the function divides the rows evenly among buckets. The following statement creates a new table named ntile_demo that stores 10 integers:

CREATE TABLE sales.ntile_demo (
	v INT NOT NULL
);
	
INSERT INTO sales.ntile_demo(v) 
VALUES(1),(2),(3),(4),(5),(6),(7),(8),(9),(10);	
	
SELECT * FROM sales.ntile_demo;
This statement uses the NTILE() function to divide ten rows into three groups:
SELECT 
	v, 
	NTILE (3) OVER (
		ORDER BY v
	) buckets
FROM 
	sales.ntile_demo;

Analytical

These window functions perform analytical operations on the records within the window.

PERCENT_RANK()

Calculates the relative rank SQL Percentile of each row. It returns values greater than zero, but the maximum value is one. It does not count any NULL values. This function is nondeterministic.

The syntax of PERCENT_RANK() is:

PERCENT_RANK() OVER (
      [PARTITION BY partition_expression, ... ]
      ORDER BY sort_expression [ASC | DESC], ...
  )
  
This syntax uses the following parameters.

  • PARTITION BY: By default, SQL Server treats the whole data set as a single set. You can specify the PARTITION BY clause to divide data into multiple sets. The Percent_Rank function performs the analytical calculations on each set. This parameter is optional.
  • ORDER BY: Sorts the data in either ascending or descending order. This parameter is required.

CData Python Connector for Microsoft Office 365

Table-Valued Functions

Table-valued functions are functions that return a table (rowset).

Note: Table-valued function support is an experimental feature of the connector. This functionality extends beyond the connector's core scope of being SQL-92 compliant. As such, performance with these functions may not be optimal.

Table-Valued Function Clauses

CROSS APPLY

The CROSS APPLY operator is used to perform a subquery on each row of a table or resultset produced by a preceding table expression.

<table_expression_1> CROSS APPLY <table_expression_2>

The second table expression can reference results from the first table expression to create derived columns or an altered recordset via a table-valued function.

Each resulting record is an instance of the record it's splitting, with all the same column values, except for the column(s) containing the value split by the function.

WITH

The WITH clause is used alongside certain table-valued functions to match against constructs within the structure being split (keys, element names, attribute names, etc.) and/or to specify metadata for the columns generated from the function.
SELECT A.ColumnName, X.DerivedColumnName FROM TableName A CROSS APPLY <table-valued function> WITH (DerivedColumnName varchar(255)) AS X

Table-Valued Functions

STRING_SPLIT(input_text,delimiter)

Takes each record in the recordset of the preceding table expression, splits the column containing delimiters (input_text) into substrings separated by the delimiter, and returns one record per substring.

  • input_text: A column whose value you want to parse.
  • delimiter: The character used to split the value of the column specified in input_text.

Suppose there is a column called "SplitColumn" with the following content:

One-Two-Three
To unpack this value across multiple records:
SELECT A.ID, X.Value FROM [TableWithDelimitedStringField] A CROSS APPLY STRING_SPLIT(A.SplitColumn,'-') WITH (Value VARCHAR(255)) AS X

-- Results:
-----------
|ID|Value|
|1|One|
|1|Two|
|1|Three|

JSONTABLE(json_content,[jsonpath])

For each record in the recordset of the preceding table expression, returns one record for each instance of a key in a JSON array (json_content) that matches the key(s) specified in the WITH clause, at the scope specified by the "jsonpath" input.

  • json_content: A JSON "table" (array of objects). The contents can nest, but this must be a single JSON array, not any other JSON structure, at the root level.
    • The values of every instance of the key(s) provided in the WITH clause are retrievable only for substructures which are immediate children of the root-level JSON array.
  • jsonpath: An optional JSONPath query defining the scope, within the json_content array, that you want to pull content from. The JSON key(s) identified in the WITH clause must exist at the scope defined in this parameter. This defaults to the JSON root ($).

Consider a sample table with a single record, including an ID column and column with JSON content called "JSONColumn" with the following content:

[
	{
		"name": "Samuel",
		"email": "sam@gmail.com",
		"extrainfo": {
			"city": "Seattle"
		}
	},
	{
		"name": "Katherine",
		"email": "kat@gmail.com",
	},
	{
		"name": "George",
		"email": "george23@gmail.com",
	},
	{
		"name": "Carlos",
		"email": "carlos32@gmail.com",
	}
]

To extract all values for a certain key, specify the scope in the JSONTABLE function and provide the desired key(s) in the WITH clause.

SELECT A.ID, X.name FROM [TableWithJSONField] A CROSS APPLY JSONTABLE(A.JSONColumn) WITH (name VARCHAR(255)) AS X

-- Results: 
|ID|name|
---------
|1 |Samuel|
|1 |Katherine|
|1 |George|
|1 |Carlos|

XMLTABLE(xml_content,[xpath,child_type])

For each record in the resultset of the preceding table expression, returns one record for each of the elements and/or attributes in an XML structure (xml_content) that match the tag name(s) and/or attribute name(s) specified in the WITH clause, at the scope specified in the "xpath" input.

  • xml_content: A column containing an XML structure.
  • xpath: An optional XPath that specifies the scope within the XML structure at which the connector extracts content matching the tag/attribute name(s) specified in the WITH clause.
    • When extracting the content of sub-elements, the connector can retrieve all content from tags at the root level, (depth 0) immediate children of the root (depth 1), and children of those children (depth 2).
    • When extracting element attribute content, the connector can retrieve all content from tags containing the specified attribute at the root level (depth 0) and from immediate children of root-level elements (depth 1).
  • child_type: An optional parameter that specifies the part(s) of the parent element (specified in the xpath input) that the column(s) provided in the WITH clause are checked against to identify content.
    • You can supply the following values:
      • 0: The column(s) in the WITH clause are checked for matches against the parent element's attribute names and sub-element tag names.
      • 1: The column(s) in the WITH clause are checked for matches against the parent element's attribute names.
      • 2: The column(s) in the WITH clause are checked for matches against the parent element's sub-element tag names.
    • When not supplied, this defaults to 0.

Extracting Sub-Element Values

Consider a sample table with a single record, including an ID column and a column with XML content called "XMLContent" with the following content:
<shoppingList>
    <item>
        <name>Apples</name>
        <quantity>3</quantity>
        <unit>Kg</unit>
    </item>
    <item>
        <name>Bread</name>
        <quantity>2</quantity>
        <unit>Loaf</unit>
		<extrainfo>
			<Type>Whole-Grain</Type>
		</extrainfo>
    </item>
    <item>
        <name>Milk</name>
        <quantity>1</quantity>
        <unit>Carton</unit>
    </item>
    <item>
        <name>Eggs</name>
        <quantity>12</quantity>
        <unit></unit>
    </item>
</shoppingList>

To extract sub-element content, specify the scope in the XMLTABLE function and provide the desired element name(s) in the WITH clause. Note that this will not work if the XMLTABLE function's child_type input is set to 1.

SELECT A.ID, X.name FROM [TableWithXMLField] A CROSS APPLY XMLTABLE(A.XMLContent,'//*/item') WITH (name VARCHAR(255)) AS X

-- Results: 
|ID|name|
---------
|1|Apples|
|1|Bread|
|1|Milk|
|1|Eggs|

Extracting Values Using Element Tag Attributes

Suppose you have this sample table with a single record, including an ID column and a column with XML content called "XMLContent" with the following content:

<restaurant>
  <dish type="appetizer">
    <name lang="en">Caprese Salad</name>
    <chef>Chef Giovanni</chef>
    <price currency="USD">9.99</price>
  </dish>
  <dish type="main-course">
    <name lang="fr">Boeuf Bourguignon</name>
    <chef>Chef Marie</chef>
    <price currency="EUR">19.99</price>
  </dish>
  <dish type="dessert">
    <name lang="es">Tres Leches Cake</name>
    <chef>Chef Alejandro</chef>
    <price currency="MXN">89.99</price>
  </dish>
</restaurant>

To extract attribute content, specify the scope in the XMLTABLE function and provide the desired attribute name(s) in the WITH clause. Note that this will not work if the XMLTABLE function's child_type input is set to 2.

SELECT A.ID, X.type FROM [TableWithXMLField] A CROSS APPLY XMLTABLE(A.XMLContent,'//*/dish') WITH (type VARCHAR(255)) AS X

-- Results: 
|ID|type|
---------
|1|appetizer|
|1|main-course|
|1|dessert|

CSVTABLE(csv_content,[delimiter])

For each record in the resultset of the preceding table expression, reads from a column that contains a CSV table (csv_content) and for each record in that CSV table, returns one record containing the value of the CSV column(s) specified in the WITH clause.

  • csv_content: A column containing a CSV table.
  • delimiter: An optional custom delimiter (instead of a comma) which splits the CSV content contained in the csv_content input.

Consider a sample table with a single record, including an ID column and a column containing CSV table called "CSVContent" with the following content:

Name;Category;Price
Apple;Fruit;0.99
Spaghetti;Pasta;5.49
Chicken Breast;Meat;8.99
Broccoli;Vegetable;2.49

To select every value in the "Name" column and account for the custom delimiter (;):

SELECT A.ID, X.Name FROM [TableWithCSVField] A CROSS APPLY CSVTABLE(A.CSVContent,';') WITH (Name VARCHAR(255)) AS X

-- Results:
|ID|Name|
-----------
|1|Apple|
|1|Spaghetti|
|1|Chicken Breast|
|1|Broccoli|

CData Python Connector for Microsoft Office 365

INSERT Statements

To create new records, use INSERT statements.

INSERT Syntax

The INSERT statement specifies the columns to be inserted and the new column values. You can specify the column values in a comma-separated list in the VALUES clause, as shown in the following example:

INSERT INTO <table_name> 
( <column_reference> [ , ... ] )
VALUES 
( { <expression> | NULL } [ , ... ] ) 
  

<expression> ::=
  | @ <parameter> 
  | ?
  | <literal>
The following is an example query:
INSERT INTO Events (location_displayName) VALUES ('Zenburger')

CData Python Connector for Microsoft Office 365

UPDATE Statements

To modify existing records, use UPDATE statements.

Update Syntax

The UPDATE statement takes as input a comma-separated list of columns and new column values as name-value pairs in the SET clause, as shown in the following example:

UPDATE <table_name> SET <select_statement> | {<column_reference> = <expression> [ , ... ]} WHERE { Id = <expression>  } [ { AND | OR } ... ] 

<expression> ::=
  | @ <parameter> 
  | ?
  | <literal>

The following is an example query:

UPDATE Events SET location_displayName='Zenburger' WHERE Id = @myId

CData Python Connector for Microsoft Office 365

DELETE Statements

To delete information from a table, use DELETE statements.

DELETE Syntax

The DELETE statement requires the table name in the FROM clause and the row's primary key in the WHERE clause, as shown in the following example:

<delete_statement> ::= DELETE FROM <table_name> WHERE { Id = <expression> } [ { AND | OR } ... ]

<expression> ::=
  | @ <parameter> 
  | ?
  | <literal>

The following is an example query:

DELETE FROM Events WHERE Id = @myId

CData Python Connector for Microsoft Office 365

CACHE Statements

When caching is enabled, CACHE statements provide complete control over the data that is cached and the table to which it is cached. The CACHE statement executes the SELECT statement specified and caches its results to a table with the same name in the cache database or to table specified in <cached_table_name>. The connector updates or inserts rows to the cache depending on whether or not they already exist in the cache, so the primary key, which is used to identify existing rows, must be included in the selected columns.

See Caching Data for more information on different caching strategies.

CACHE Statement Syntax

The cache statement may include the following options that alter its behavior:

CACHE [ <cached_table_name> ] [ WITH TRUNCATE | AUTOCOMMIT | SCHEMA ONLY | DROP EXISTING | ALTER SCHEMA ] <select_statement> 

WITH TRUNCATE

If this option is set, the connector removes existing rows in the cache table before adding the selected rows. Use this option if you want to refresh the entire cache table but keep its existing schema.

AUTOCOMMIT

If this option is set, the connector commits each row individually. Use this option if you want to ignore the rows that could not be cached due to some reason. By default, the entire result set is cached as a single transaction.

DROP EXISTING

If this option is set, the connector drops the existing cache table before caching the new results. Use this option if you want to refresh the entire cache table, including its schema.

SCHEMA ONLY

If this option is set, the connector creates the cache table based on the SELECT statement without executing the query.

ALTER SCHEMA

If this option is set, the connector alters the schema of the existing table in the cache if it does not match the schema of the SELECT statement. This option results in new columns or dropped columns, if the schema of the SELECT statement does not match the cached table.

Common Queries

Use the following cache statement to cache all rows of a table:

CACHE SELECT * FROM Events

Use the following cache statement to cache all rows of a table into the cache table CachedEvents:

CACHE CachedEvents SELECT * FROM Events

Use the following cache statement for incremental caching. The DateModified column may not exist in all tables. The cache statement shows how incremental caching would work if there were such a column. Also, notice that, in this case, the WITH TRUNCATE and DROP EXISTING options are specifically omitted, which would have deleted all existing rows.

CACHE CachedEvents SELECT * FROM Events WHERE DateModified > '2013-04-04'

Use the following cache statements to create a table with all available columns that will then cache only a few of them. The sequence of statements cache only Id and location_displayName even though the cache table CachedEvents has all the columns in Events.

CACHE CachedEvents SCHEMA ONLY SELECT * FROM Events
CACHE CachedEvents SELECT Id, location_displayName FROM Events

CData Python Connector for Microsoft Office 365

EXECUTE Statements

To execute stored procedures, you can use EXECUTE or EXEC statements.

EXEC and EXECUTE assign stored procedure inputs, referenced by name, to values or parameter names.

Stored Procedure Syntax

To execute a stored procedure as an SQL statement, use the following syntax:

 
{ EXECUTE | EXEC } <stored_proc_name> 
{
  [ @ ] <input_name> = <expression>
} [ , ... ]

<expression> ::=
  | @ <parameter> 
  | ?
  | <literal>

Example Statements

Reference stored procedure inputs by name:

EXECUTE my_proc @second = 2, @first = 1, @third = 3;

Execute a parameterized stored procedure statement:

EXECUTE my_proc second = @p1, first = @p2, third = @p3; 

CData Python Connector for Microsoft Office 365

PIVOT and UNPIVOT

PIVOT and UNPIVOT can be used to change a table-valued expression into another table.

PIVOT

PIVOT rotates a table-value expression by turning unique values from one column into multiple columns in the output. PIVOT can run aggregations where required on any column value.
PIVOT Synax

 
"SELECT 'AverageCost' AS Cost_Sorted_By_Production_Days, [0], [1], [2], [3], [4]
FROM
(
SELECT DaysToManufacture, StandardCost
FROM Production.Product
) AS SourceTable
PIVOT
(
AVG(StandardCost)
FOR DaysToManufacture IN ([0], [1], [2], [3], [4])
) AS PivotTable;"

UNPIVOT

UNPIVOT carries out nearly the opposite to PIVOT by rotating columns of a table-valued expressions into column values.
UNPIVOT Sytax

 
"SELECT VendorID, Employee, Orders
FROM
(SELECT VendorID, Emp1, Emp2, Emp3, Emp4, Emp5
FROM pvt) p
UNPIVOT
(Orders FOR Employee IN
(Emp1, Emp2, Emp3, Emp4, Emp5)
)AS unpvt;"

For further information on PIVOT and UNPIVOT, see FROM clause plus JOIN, APPLY, PIVOT (Transact-SQL)

CData Python Connector for Microsoft Office 365

Data Model

The CData Python Connector for Microsoft Office 365 models Microsoft Office 365 objects as an easy-to-use SQL database, using tables, views, and stored procedures. These are defined in schema files, which are simple, easy-to-read text files that define the structure and organization of data. Because the table definitions are dynamically retrieved, any changes to the remote data are immediately reflected in your queries.

Note: The connector uses the Microsoft Office 365 API to process supported filters. Other filters are processed client-side.

Tables

The Tables section, which details standard SQL tables, and the Views section, which lists read-only SQL tables, contain samples from a sample Office 365 site. Your data model is obtained dynamically based on your user credentials and Office 365 site.

The sample site includes the following tables:

Table Description
CalendarView Returns a filtered list of calendar events such as occurrences, exceptions, and single instances, within a specified time range from a user's calendar.
Calendars Provides details about calendars associated with users, including names, time zones, and ownership metadata. Maps dynamically to the API fields.
Contacts Contains user contact records, including names, email addresses, job titles, and business phone numbers synced from Office365.
Conversations Stores threaded conversations from Microsoft 365 Groups, including messages and participants.
EventAttachments Displays attachments related to calendar events, including file metadata and associated event identifiers.
EventOccurrences Provides a flattened view of recurring event instances, enabling analysis of each occurrence individually.
Events Captures core details of calendar events, such as start and end times, locations, organizers, and recurrence rules. Maps dynamically to API fields.
Files Lists files stored in OneDrive or SharePoint, with metadata including file names, locations, last modified times, and sharing status.
Groups Includes metadata about Microsoft 365 Groups, such as group names, descriptions, email aliases, and visibility settings.
MessageAttachments Retrieves email message attachments with metadata like attachment names, sizes, and parent message IDs.
Messages Contains email messages from user mailboxes, including subjects, senders, timestamps, and read status.
Plans Displays task plan data from Microsoft Planner, including plan names, owners, and associated group IDs.
Tasks Lists individual tasks from Microsoft To Do or Planner, with details like titles, due dates, and completion status.
Users Supports reading, creating, updating, and deleting Office365 user accounts. Includes profile and licensing details.

Stored Procedures

Stored Procedures are SQL scripts that extend beyond standard CRUD operations. They can be used to search, update, and modify information in Office365.

CData Python Connector for Microsoft Office 365

Tables

The connector models the data in Microsoft Office 365 as a list of tables in a relational database that can be queried using standard SQL statements.

CData Python Connector for Microsoft Office 365 Tables

Name Description
BookingAppointments Provides details about the appointments that are and can be scheduled for a business that is determined by the field bookingBusinessId.
BookingBusinesses Provides details about calendars associated with users, including names, time zones, and ownership metadata. Maps dynamically to the API fields.
BookingCustomers Information about the customer that is interacting with a business.
BookingCustomQuestions Custom questions that may be asked to a customer booking an appointment.
BookingServices The services that a business makes available to customers.
BookingStaffMembers Information about the staff members of a business.
CalendarGroups Groups user calendars into named calendar groups.
Calendars Provides details about calendars associated with users, including names, time zones, and ownership metadata. Maps dynamically to the API fields.
ContactFolders Contains information about contact folders.
Contacts Contains user contact records, including names, email addresses, job titles, and business phone numbers synced from Office365.
Conversations Stores threaded conversations from Microsoft 365 Groups, including messages and participants.
Events Captures core details of calendar events, such as start and end times, locations, organizers, and recurrence rules. Maps dynamically to API fields.
Files Lists files stored in OneDrive or SharePoint, with metadata including file names, locations, last modified times, and sharing status.
GroupMembers Members of a Microsoft 365 or security group.
Groups Includes metadata about Microsoft 365 Groups, such as group names, descriptions, email aliases, and visibility settings.
LinkedResources External resources linked to a To Do task.
MailFolders Lists all mail folders within user mailboxes, such as Inbox, Sent Items, and custom folders. It enables folder-level message organization and navigation in Office365.
Messages Contains email messages from user mailboxes, including subjects, senders, timestamps, and read status.
Tasks Lists individual tasks from Microsoft To Do or Planner, with details like titles, due dates, and completion status.
TodoTaskLists Task lists in Microsoft To Do containing one or more tasks.
TodoTasks Individual tasks within a Microsoft To Do task list.
Users Supports reading, creating, updating, and deleting Office365 user accounts. Includes profile and licensing details.

CData Python Connector for Microsoft Office 365

BookingAppointments

Provides details about the appointments that are and can be scheduled for a business that is determined by the field bookingBusinessId.

Columns

Name Type ReadOnly References Description
additionalInformation String False

Any additional information linked to this appointment.

anonymousJoinWebUrl String False

A URL that allows a participant to join the appointment.

appointmentLabel String False

A label that was applied to this business. May be any string value.

createdDateTime Datetime False

The date and time that this appointment was created.

customerEmailAddress String False

The email address of the customer that will be participating in this appointment.

customerName String False

The name of the customer.

customerNotes String False

Notes on the customer that are linked to this appointment.

customerPhone String False

The customer's phone numbe.r

customers String False

The customers that will be attending this appointment.

customerTimeZone String False

The timezone that the customer operates in.

duration String False

The duration of this appointment.

endDateTime_dateTime Datetime False

The datetime value of the scheduled end of the appointment.

endDateTime_timeZone String False

The timezone of the scheduled end of the appointment.

filledAttendeesCount Boolean False

The number of attendees to this appointment.

isCustomerAllowedToManageBooking Boolean False

A flag that indicates if the customer can control the attendees or cancel the appointment

isLocationOnline Boolean False

A flag that indicates if the appointment is held in a physical location or online.

joinWebUrl String False

The URL to join the appointment.

lastUpdatedDateTime Datetime False

The last time this appointment was updated.

maximumAttendeesCount Boolean False

The maximum number of people allowed to attend the appointment.

optOutOfCustomerEmail Boolean False

A flag that indicates if opting out of customer email.

postBuffer String False

The post buffer.

preBuffer String False

The pre buffer.

price Float False

The price attached to the appointment.

priceType String False

The type of price.

reminders String False

The reminders that occur for this appointment.

selfServiceAppointmentId String False

The ID for self-service for this appointment.

serviceId String False

The identifier for the service that is attached to this appointment.

serviceLocation_address_city String False

The city portion of the address for the service.

serviceLocation_address_countryOrRegion String False

The county or region portion of the address for the service.

serviceLocation_address_postalCode String False

The zip code portion of the address for the service.

serviceLocation_address_state String False

The state portion of the address for the service.

serviceLocation_address_street String False

The street portion of the address for the service.

serviceLocation_coordinates_accuracy Float False

The accuracy of the coordinates attached to the service

serviceLocation_coordinates_altitude Float False

The altitude of the service location.

serviceLocation_coordinates_altitudeAccuracy Float False

The accuracy of the altitude of the service location.

serviceLocation_coordinates_latitude Float False

The latitude of the service location.

serviceLocation_coordinates_longitude Float False

The accuracy of the latitude of the service location.

serviceLocation_displayName String False

The name that will be displayed when viewing this location

serviceLocation_locationEmailAddress String False

The email address attached to the service location.

serviceLocation_locationType String False

The type of location.

serviceLocation_locationUri String False

The URI of the location.

serviceLocation_uniqueId String False

A unique identifier that refers to a specific location.

serviceLocation_uniqueIdType String False

The type of ID.

serviceName String False

The name that will be displayed when viewing this service.

serviceNotes String False

The notes attached to this service.

smsNotificationsEnabled Boolean False

A flag that indicates if notifications will be sent via SMS for this service.

staffMemberIds String False

The ID values representing the staff assigned to this service.

startDateTime_dateTime Datetime False

The datetime representing the start of the service without a timezone.

startDateTime_timeZone String False

The timezone of the start of the service.

bookingbusinessid String False

A foreign key representing the business that this appointment was booked for.

Id [KEY] String False

A unique identifier for this appointment.

CData Python Connector for Microsoft Office 365

BookingBusinesses

Provides details about calendars associated with users, including names, time zones, and ownership metadata. Maps dynamically to the API fields.

Columns

Name Type ReadOnly References Description
Id [KEY] String True

Unique identifier for the business. Typically will be in the format of the email address used to set it up.

address_city String False

The city portion of the business's address.

address_countryOrRegion String False

The country portion of the businesses's address.

address_postalCode String False

The zipcode portion of the business's address.

address_state String False

The state portion of the business's address.

address_street String False

The street location of the business.

bookingPageSettings_accessControl String False

A descriptor of the access control of this booking business's page.

bookingPageSettings_bookingPageColorCode String False

The color code for the page of this business.

bookingPageSettings_businessTimeZone String False

The time zone in which the business operates.

bookingPageSettings_customerConsentMessage String False

The message used to get customer consent.

bookingPageSettings_enforceOneTimePassword Int False

Whether to force the usage of a one-time password.

bookingPageSettings_isBusinessLogoDisplayEnabled Int False

Shows whether the business logo will be displayed on the page.

bookingPageSettings_isCustomerConsentEnabled Int False

Indicates whether the customer will be prompted with the consent message.

bookingPageSettings_isSearchEngineIndexabilityDisabled Int False

Indicates whether the search engine indexability is enabled.

bookingPageSettings_isTimeSlotTimeZoneSetToBusinessTimeZone Int False

Indicates whether the bookings for this business will all operate on the business's timezone.

bookingPageSettings_privacyPolicyWebUrl String False

A link to the business's privacy policy.

bookingPageSettings_termsAndConditionsWebUrl String False

A link to the business's terms and conditions.

businessHours String False

A string representation of the hours of operation for this business.

businessType String False

A string representation of what type of business this is.

createdDateTime Datetime False

A timestamp representing the instant the business was created.

defaultCurrencyIso String False

The default currency that this business uses.

displayName String False

The name that will be displayed.

email String False

The email that can be used to contact the business.

languageTag String False

The language that this business typically operates in.

lastUpdatedDateTime Datetime False

The last time that any field for this business has been updated.

phone String False

The phone number that can be used to contact the business or business owner.

publicUrl String False

The URL that would be used to reach the business's public website.

schedulingPolicy_allowStaffSelection Int False

A flag that indicates whether staff selection is possible when scheduling.

schedulingPolicy_customAvailabilities String False

The custom availabilities for scheduling.

schedulingPolicy_generalAvailability_availabilityType String False

The scheuling policy's availability type.

schedulingPolicy_generalAvailability_businessHours String False

The business hours that are used for scheduling purposes.

schedulingPolicy_isMeetingInviteToCustomersEnabled Int False

A flag that indicates if customers can be invited to meetings with this business.

schedulingPolicy_maximumAdvance String False

The maximum advance avilable during scheduling.

schedulingPolicy_minimumLeadTime String False

The minimum lead time available during scheduling.

schedulingPolicy_sendConfirmationsToOwner Int False

Indicates whether the scheduling confirmations are sent to the business owner.

schedulingPolicy_timeSlotInterval String False

The available time slot intervals that appear during scheduling for this business.

webSiteUrl String False

The URL of the business website.

isPublished Bool False

Indicates whether the scheduling page for this business has been published and made available to external customers. Use the publish and unpublish actions to set this property. Read-only.

CData Python Connector for Microsoft Office 365

BookingCustomers

Information about the customer that is interacting with a business.

Columns

Name Type ReadOnly References Description
addresses String False

The addresses that the customer has attached to their profile.

createdDateTime Datetime False

The date and time when the customer profile was created.

displayName String False

The name of the customer.

emailAddress String False

An email address at which the customer can be reached.

lastUpdatedDateTime Datetime False

The last time when this customer record was modified.

phones String False

The phone numbers that may be used to reach this customer.

bookingbusinessid String False

A foreign key representing the business that owns this profile.

Id [KEY] String False

A unique identifier representing this customer profile.

CData Python Connector for Microsoft Office 365

BookingCustomQuestions

Custom questions that may be asked to a customer booking an appointment.

Columns

Name Type ReadOnly References Description
answerInputType String False

The type of answer input that is allowed.

answerOptions String False

The options for the answer to this question.

createdDateTime Datetime False

The datetime when this question was created.

displayName String False

The name that will be seen when displaying this question.

lastUpdatedDateTime Datetime False

The datetime when this quest last had a field modified.

bookingbusinessid String False

null

Id [KEY] String False

The unique identifier for this question.

CData Python Connector for Microsoft Office 365

BookingServices

The services that a business makes available to customers.

Columns

Name Type ReadOnly References Description
additionalInformation String False

Additional details or information about the booking business.

createdDateTime Datetime False

The date and time when the booking business was created.

customQuestions String False

Custom questions or forms related to the booking process.

defaultDuration String False

The default duration for bookings, in minutes or hours.

defaultLocation_address_city String False

City of the default location for the booking business.

defaultLocation_address_countryOrRegion String False

Country or region of the default location for the booking business.

defaultLocation_address_postalCode String False

Postal code of the default location for the booking business.

defaultLocation_address_state String False

State or province of the default location for the booking business.

defaultLocation_address_street String False

Street address of the default location for the booking business.

defaultLocation_coordinates_accuracy Float False

Accuracy of the geographic coordinates of the default location.

defaultLocation_coordinates_altitude Float False

Altitude of the default location's geographic coordinates.

defaultLocation_coordinates_altitudeAccuracy Float False

Accuracy of the altitude measurement for the default location.

defaultLocation_coordinates_latitude Float False

Latitude of the default location's geographic coordinates.

defaultLocation_coordinates_longitude Float False

Longitude of the default location's geographic coordinates.

defaultLocation_displayName String False

The display name of the default location for the booking business.

defaultLocation_locationEmailAddress String False

Email address associated with the default location.

defaultLocation_locationType String False

The type of location (e.g., physical, virtual) for the booking business.

defaultLocation_locationUri String False

URI or URL of the default location for the booking business.

defaultLocation_uniqueId String False

A unique identifier for the default location.

defaultLocation_uniqueIdType String False

The type of the unique identifier for the default location.

defaultPrice Float False

The default price for a booking at this business.

defaultPriceType String False

The pricing model used by the business (e.g., flat, hourly).

defaultReminders String False

Default reminder settings for bookings, such as time before appointment.

description String False

A brief description of the booking business.

displayName String False

The name of the booking business or service.

isAnonymousJoinEnabled Int False

Indicates whether anonymous users can join the booking.

isCustomerAllowedToManageBooking Int False

Indicates if the customer can manage their own booking.

isHiddenFromCustomers Int False

Indicates if the booking business is hidden from customers.

isLocationOnline Int False

Indicates if the default location is currently online or available.

languageTag String False

The language or locale used for the booking business interface.

lastUpdatedDateTime Datetime False

The date and time when the booking business was last updated.

maximumAttendeesCount Int False

The maximum number of attendees allowed for a booking.

notes String False

Additional notes or instructions related to the booking business.

postBuffer String False

Time buffer after an appointment, before another can be scheduled.

preBuffer String False

The time to buffer before an appointment for this service can start. It is represented in ISO8601 format.

schedulingPolicy_allowStaffSelection Bool False

Indicates whether customers are allowed to choose a specific staff member when booking this service.

schedulingPolicy_customAvailabilities String False

Custom availability rules defined for the scheduling policy of this service.

schedulingPolicy_generalAvailability_availabilityType String False

Specifies the type of general availability configured in the scheduling policy, such as BusinessHours or NotAvailable.

schedulingPolicy_generalAvailability_businessHours String False

The general business hours used as the default availability for this service's scheduling policy.

schedulingPolicy_isMeetingInviteToCustomersEnabled Bool False

Indicates whether a meeting invite is sent to customers when an appointment is booked for this service.

schedulingPolicy_maximumAdvance String False

The maximum time in advance that a booking for this service can be made, represented in ISO8601 format.

schedulingPolicy_minimumLeadTime String False

The minimum lead time required before a booking for this service can be made, represented in ISO8601 format.

schedulingPolicy_sendConfirmationsToOwner Bool False

Indicates whether booking confirmation notifications are sent to the business owner.

schedulingPolicy_timeSlotInterval String False

The interval between available time slots for this service, represented in ISO8601 format.

smsNotificationsEnabled Bool False

Indicates whether SMS notifications can be sent to customers for appointments of this service.

staffMemberIds String False

A comma-separated list of staff member IDs who provide this service.

webUrl String False

The URL a customer uses to access this service from the booking page.

bookingbusinessid String False

The ID of the booking business to which this service belongs. Used internally by CData to scope service queries.

Id [KEY] String False

The unique identifier of the booking service, in GUID format. Read-only.

CData Python Connector for Microsoft Office 365

BookingStaffMembers

Information about the staff members of a business.

Columns

Name Type ReadOnly References Description
availabilityIsAffectedByPersonalCalendar Int False

Indicates if the availability of the user is affected by their personal calendar.

createdDateTime Datetime False

The date and time when the entity was created.

displayName String False

The display name of the entity or user.

emailAddress String False

The email address associated with the entity or user.

isEmailNotificationEnabled Int False

Indicates if email notifications are enabled for this entity.

lastUpdatedDateTime Datetime False

The date and time when the entity was last updated.

membershipStatus String False

The current membership status of the user or entity (e.g., active, inactive).

role String False

The role or position of the user within the system or organization (e.g., admin, user).

timeZone String False

The time zone of the entity or user.

useBusinessHours Int False

Indicates if the business hours setting is used for scheduling.

workingHours String False

The working hours of the entity or user, usually in a daily or weekly format.

bookingbusinessid String False

The identifier associated with the booking business.

Id [KEY] String False

A unique identifier for the entity.

BookingBusinessId String False

The unique identifier for the booking business.

CData Python Connector for Microsoft Office 365

CalendarGroups

Groups user calendars into named calendar groups.

Columns

Name Type ReadOnly References Description
changeKey String False

Identifies the version of the calendar group. Every time the calendar group is changed, ChangeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.

classId String False

The class identifier. Read-only.

name String False

The group name.

userid String False

The identifier of the user associated with this calendar group.

Id [KEY] String True

The group's unique identifier. Read-only.

CData Python Connector for Microsoft Office 365

Calendars

Provides details about calendars associated with users, including names, time zones, and ownership metadata. Maps dynamically to the API fields.

Table Specific Information

Select

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%'

Insert

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');

Columns

Name Type ReadOnly References Description
id [KEY] String True

Unique identifier for the calendar object within the user's mailbox.

Etag String False

Entity tag used for version control of the calendar object.

allowedOnlineMeetingProviders String False

List of online meeting providers (with 1 space after each comma) that are allowed for this calendar, such as Teams, Skype, Webex.

canEdit Bool False

Indicates whether the user has permission to edit events on this calendar.

canShare Bool False

Indicates whether the user has permission to share this calendar with others.

canViewPrivateItems Bool False

Indicates whether the user can view events marked as private on this calendar.

changeKey String False

Token used to identify the version of the calendar object and detect changes.

color String False

Predefined color name assigned to this calendar for visual differentiation.

defaultOnlineMeetingProvider String False

Specifies the default provider used when scheduling online meetings from this calendar.

hexColor String False

Hexadecimal color code associated with the calendar (for example, #FF5733) for custom coloring.

isDefaultCalendar Bool False

Indicates whether this calendar is the user's default calendar.

isRemovable Bool False

Indicates whether this calendar can be removed by the user.

isTallyingResponses Bool False

Specifies whether responses to event invitations on this calendar are being tracked.

name String False

Display name assigned to the calendar, such as 'Work' or 'Personal'.

owner_address String False

Email address of the owner of the calendar.

owner_name String False

Display name of the calendar owner.

UserId [KEY] String False

Identifier of the user associated with the calendar entry.

calendargroupid String False

The ID of the calendar group to which this calendar belongs. Used internally by CData to scope calendar queries within a group.

CData Python Connector for Microsoft Office 365

ContactFolders

Contains information about contact folders.

Columns

Name Type ReadOnly References Description
id [KEY] String True

Unique identifier for the contact folder.

displayName String False

The name given to the contact folder.

parentFolderId String False

Identifier for the contact folder that is the parent of this record.

UserId String False

Identifier for the user to whom the contact belongs.

CData Python Connector for Microsoft Office 365

Contacts

Contains user contact records, including names, email addresses, job titles, and business phone numbers synced from Office365.

Table Specific Information

Select

You can query Contacts by specifying an Id or selecting all:

SELECT * FROM Contacts WHERE Id = 'your Contact Id goes here'

Select a certain column from the entity and filter by that column:

SELECT GivenName FROM Contacts WHERE GivenName LIKE 'John%'

Insert

Specify a GivenName and a Surname as a minimum in order to create a new Contact:

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')

Columns

Name Type ReadOnly References Description
id [KEY] String True

Unique identifier for the contact record.

Etag String False

Entity tag used to determine whether the contact has changed since it was last retrieved.

categories String False

List of categories assigned to the contact for organization or filtering.

changeKey String False

Version key that updates each time the contact is modified.

createdDateTime Datetime False

Timestamp indicating when the contact was created in the system.

lastModifiedDateTime Datetime False

Timestamp indicating the last time the contact was updated.

assistantName String False

Full name of the contact's assistant.

birthday Datetime False

The contact's date of birth.

businessAddress_city String False

City portion of the contact's business address.

businessAddress_countryOrRegion String False

Country or region of the contact's business address.

businessAddress_postalCode String False

Postal code of the contact's business address.

businessAddress_state String False

State or province of the contact's business address.

businessAddress_street String False

Street portion of the contact's business address.

businessHomePage String False

URL of the contact's business home page.

businessPhones String False

One or more business phone numbers associated with the contact.

children String False

Names of the contact's children, separated by commas.

companyName String False

Name of the company where the contact works.

department String False

Department within the company to which the contact belongs.

displayName String False

The contact's full display name as shown in the address book.

emailAddresses String False

List of email addresses associated with the contact.

fileAs String False

Text used to file and sort the contact in address books.

generation String False

Suffix denoting generational titles such as Jr., Sr., III.

givenName String False

The contact's first name or given name.

homeAddress_city String False

City portion of the contact's home address.

homeAddress_countryOrRegion String False

Country or region of the contact's home address.

homeAddress_postalCode String False

Postal code of the contact's home address.

homeAddress_state String False

State or province of the contact's home address.

homeAddress_street String False

Street portion of the contact's home address.

homePhones String False

One or more home phone numbers associated with the contact.

imAddresses String False

Instant messaging (IM) addresses associated with the contact.

initials String False

The contact's initials, typically derived from given and family names.

jobTitle String False

The contact's job title or position within the organization.

manager String False

Name of the contact's manager or supervisor.

middleName String False

The contact's middle name.

mobilePhone String False

Primary mobile phone number for the contact.

nickName String False

Nickname or informal name used for the contact.

officeLocation String False

Location or room number of the contact's office.

otherAddress_city String False

City portion of an alternate address for the contact.

otherAddress_countryOrRegion String False

Country or region of the contact's alternate address.

otherAddress_postalCode String False

Postal code of the contact's alternate address.

otherAddress_state String False

State or province of the contact's alternate address.

otherAddress_street String False

Street portion of the contact's alternate address.

parentFolderId String False

Identifier of the folder that contains the contact.

personalNotes String False

Freeform notes or annotations the user has added about the contact.

profession String False

The contact's profession or area of expertise.

spouseName String False

Name of the contact's spouse or partner.

surname String False

The contact's family name or surname.

title String False

Courtesy title or salutation for the contact such as Mr., Ms., Dr.

yomiCompanyName String False

Phonetic spelling of the contact's company name in Japanese kana.

yomiGivenName String False

Phonetic spelling of the contact's first name in Japanese kana.

yomiSurname String False

Phonetic spelling of the contact's last name in Japanese kana.

UserId [KEY] String False

Identifier for the user to whom the contact belongs.

primaryEmailAddress_address String False

The email address of the contact's primary email address entry.

primaryEmailAddress_name String False

The display name associated with the contact's primary email address.

secondaryEmailAddress_address String False

The email address of the contact's secondary email address entry.

secondaryEmailAddress_name String False

The display name associated with the contact's secondary email address.

tertiaryEmailAddress_address String False

The email address of the contact's tertiary email address entry.

tertiaryEmailAddress_name String False

The display name associated with the contact's tertiary email address.

CData Python Connector for Microsoft Office 365

Conversations

Stores threaded conversations from Microsoft 365 Groups, including messages and participants.

Table Specific Information

Select

The GroupId is required to get group Conversations.

SELECT * FROM Conversations WHERE GroupId = 'your GroupId goes here'

You can also get group Conversations by using the GroupId and the Conversation Id.

SELECT * FROM Conversations WHERE Id = 'conversation Id here' AND GroupId = 'your GroupId goes here'

Insert

Specify GroupId, Topic, Content, and NewParticipants to create a new Conversation. NewParticipants is a complex type. Its format is as follows: 'name1, email1; name2, email2'.

INSERT INTO Conversations (GroupId, Topic, Content, NewParticipants) VALUES ('GroupId here', 'This is a test topic.', 'Hi, How Are you?', 'someone, someone@example.com')

Columns

Name Type ReadOnly References Description
id [KEY] String True

Unique identifier for the conversation thread.

Etag String False

Entity tag used to detect changes to the conversation since it was last retrieved.

hasAttachments Bool False

Indicates whether any messages in the conversation contain attachments.

lastDeliveredDateTime Datetime False

Timestamp of the most recent message delivered in the conversation.

preview String False

Text snippet providing a short preview of the latest message in the conversation.

topic String False

The subject or topic line associated with the conversation.

uniqueSenders String False

Comma-separated list of unique senders who have contributed to the conversation. Each sender is listed once. For example: alice@example.com, bob@example.com.

GroupId [KEY] String False

Identifier of the Microsoft 365 group associated with the conversation.

Content String False

Full content of the conversation, including messages and attachments where applicable.

NewParticipants String False

Comma-separated list of participants who have joined the conversation since the last message. For example: charlie@example.com, diana@example.com.

CData Python Connector for Microsoft Office 365

Events

Captures core details of calendar events, such as start and end times, locations, organizers, and recurrence rules. Maps dynamically to API fields.

Table Specific Information

Select

By default, the driver uses the Microsoft Graph alias 'me' for the UserId input to return events for the signed-in user.

To override this, you can specify the UserId in the WHERE clause when returning events:

SELECT * FROM Events WHERE UserId = 'abc123' AND subject LIKE '%test%'

The GroupId can be a calendar type Id or a group Id. For example:

SELECT * FROM Events WHERE GroupId = 'enter your group Id here'

Insert

To create a new event, you must specify start_dateTime, start_timeZone, end_dateTime, and end_timeZone:

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: By default, this statement creates your event under the default calendar.

To create a new event using client credentials, you must specify UserId:

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')

Non-primitive collection fields such as attendees must be provided as full JSON aggregates when inserting events:

INSERT INTO Events (
    attendees, 
    subject, 
    body_content, 
    start_dateTime, 
    start_timeZone, 
    end_dateTime, 
    end_timeZone, 
    UserId
)
VALUES (
    '[{"emailAddress":{"address":"user1@domain.com","name":"Existing attendee"},"type":"required"},
      {"emailAddress":{"address":"user2@domain.com","name":"Another New Person"},"type":"optional"}]', 
    'New Test Event', 
    'Event created using Office365Provider', 
    '2025-10-10T10:00:00', 
    'UTC', 
    '2025-10-10T11:00:00', 
    'UTC', 
    'a9920804-3212-4f9d-aac7-f55c697fa2bc'
);

Update

Non-primitive collection fields such as attendees must be provided as full JSON aggregates when updating events:

UPDATE Events
SET subject = 'Test subject',
    attendees = '[{"emailAddress":{"address":"user1@domain.com","name":"Required attendee"},"type":"required"},
		  {"emailAddress":{"address":"user2@domain.com","name":"Another New Person"},"type":"optional"}]'
WHERE Id = 'AAMkADAxN2QyZTIwLTY0YjEtNDZiNy04ZjFhLTU2MzA0ZWNjMGNjYwBGAAAAAADpUZiyrqBVQpCowL_0uo9dBwBhzddEbK9VR5ygMcniqu-UAAAAAAENAABhzddEbK9VR5ygMcniqu-UAACrGWckAAA=';

Columns

Name Type ReadOnly References Description
id [KEY] String True

Unique identifier for the event record.

Etag String False

Entity tag used to identify changes to the event data since it was last retrieved.

categories String False

List of categories assigned to the event for organization or filtering.

changeKey String False

Version key that updates every time the event is changed.

createdDateTime Datetime False

Timestamp indicating when the event was created.

lastModifiedDateTime Datetime False

Timestamp indicating the most recent update to the event.

allowNewTimeProposals Bool False

Indicates whether attendees are allowed to propose a new meeting time.

attendees String False

List of attendees invited to the event. For example: alice@example.com, bob@example.com.

body_content String False

Full message body or description of the event.

body_contentType String False

Format of the body content, such as text or HTML.

bodyPreview String False

Short preview or snippet from the event description.

end_dateTime Datetime False

End time of the event in local time.

end_timeZone String False

Time zone associated with the end time.

hasAttachments Bool False

Indicates whether the event has associated file attachments.

hideAttendees Bool False

True if attendee information is hidden from other participants.

iCalUId String False

Unique identifier used to synchronize the event across calendar systems.

importance String False

Importance level of the event, such as low, normal, or high.

isAllDay Bool False

True if the event spans the entire day without specific start or end times.

isCancelled Bool False

True if the event has been canceled.

isDraft Bool False

True if the event is a draft and has not been finalized.

isOnlineMeeting Bool False

True if the event includes an online meeting component.

isOrganizer Bool False

True if the current user is the organizer of the event.

isReminderOn Bool False

Indicates whether a reminder is enabled for the event.

location_address_city String False

City component of the event's location.

location_address_countryOrRegion String False

Country or region of the event's location.

location_address_postalCode String False

Postal code for the event location.

location_address_state String False

State or province of the event location.

location_address_street String False

Street address where the event takes place.

location_coordinates_accuracy Double False

Precision of the location's geographic coordinates in meters.

location_coordinates_altitude Double False

Altitude of the event location in meters above sea level.

location_coordinates_altitudeAccuracy Double False

Accuracy of the altitude measurement in meters.

location_coordinates_latitude Double False

Latitude coordinate of the event location.

location_coordinates_longitude Double False

Longitude coordinate of the event location.

location_displayName String False

Display name of the event location.

location_locationEmailAddress String False

Email address of the location resource, such as a meeting room.

location_locationType String False

Type of location, such as default, conference room, or home address.

location_locationUri String False

URI or web-based reference for the location, if available.

location_uniqueId String False

Unique identifier for the location object.

location_uniqueIdType String False

Source of the location ID, such as directory or locationStore.

locations String False

List of additional locations for the event. For example: Conference Room A, Main Hall.

onlineMeeting_conferenceId String False

Conference ID used by the online meeting provider.

onlineMeeting_joinUrl String False

Join URL used by participants to access the online meeting.

onlineMeeting_phones String False

Phone numbers available for dial-in access to the online meeting.

onlineMeeting_quickDial String False

Quick dial string that participants can use to join the meeting quickly.

onlineMeeting_tollFreeNumbers String False

Toll-free phone numbers for joining the online meeting. For example: 8001234567, 8887654321.

onlineMeeting_tollNumber String False

Standard toll number for dialing into the online meeting.

onlineMeetingProvider String False

Online meeting provider used for the event, such as Teams or Skype for Business.

onlineMeetingUrl String False

Full URL to the online meeting interface.

organizer_emailAddress_address String False

Email address of the event organizer.

organizer_emailAddress_name String False

Display name of the event organizer.

originalEndTimeZone String False

Time zone that was originally assigned to the event end time.

originalStart Datetime False

Original start time of the event before any changes were made.

originalStartTimeZone String False

Time zone that was originally assigned to the event start time.

recurrence_pattern_dayOfMonth Int False

Day of the month on which the event recurs, for monthly patterns.

recurrence_pattern_daysOfWeek String False

Days of the week when the event recurs. For example: Monday, Wednesday, Friday.

recurrence_pattern_firstDayOfWeek String False

Day considered the start of the week for recurrence calculations.

recurrence_pattern_index String False

Occurrence within the month for weekly patterns, such as first or last.

recurrence_pattern_interval Int False

Interval between recurrences, such as every 2 weeks or every 3 days.

recurrence_pattern_month Int False

Month of the year when the event occurs, used for yearly patterns.

recurrence_pattern_type String False

Pattern type for recurrence, such as daily, weekly, monthly, or yearly.

recurrence_range_endDate Datetime False

Date on which the recurring event ends.

recurrence_range_numberOfOccurrences Int False

Number of times the event is set to occur.

recurrence_range_recurrenceTimeZone String False

Time zone used for the recurrence pattern.

recurrence_range_startDate Datetime False

Start date of the recurrence range.

recurrence_range_type String False

Type of recurrence range, such as endDate, numberOfOccurrences, or noEnd.

reminderMinutesBeforeStart Int False

Number of minutes before the start time when a reminder is triggered.

responseRequested Bool False

True if the organizer has requested attendee responses.

responseStatus_response String False

The current response status from an attendee, such as accepted or declined.

responseStatus_time Datetime False

Timestamp of the attendee's most recent response.

sensitivity String False

Sensitivity level of the event, such as normal, personal, private, or confidential.

seriesMasterId String False

Identifier for the master event in a recurring series.

showAs String False

How the event is displayed on calendars, such as free, busy, or out of office.

start_dateTime Datetime False

Start time of the event in local time.

start_timeZone String False

Time zone associated with the start time.

subject String False

Subject or title of the event.

transactionId String False

Client-defined identifier to detect duplicate event submissions.

type String False

Type of event, such as singleInstance, occurrence, exception, or seriesMaster.

webLink String False

URL that opens the event in a web browser.

UserId String False

Identifier of the user who owns or created the event.

GroupId String False

Identifier of the Microsoft 365 group associated with the event.

CalendarId String False

Identifier of the Microsoft 365 Calendar associated with the event. May be null if the event is not retrieved by calendar.

CalendarGroupId String False

Identifier of the Microsoft 365 Calendar Group associated with the event. May be null if the event is not retrieved by Calendar Group.

cancelledOccurrences String False

Contains the occurrenceId property values of canceled instances in a recurring series, if the event is the series master.

CData Python Connector for Microsoft Office 365

Files

Lists files stored in OneDrive or SharePoint, with metadata including file names, locations, last modified times, and sharing status.

Table Specific Information

Select

Retrieve files by using the UserId or File Id (Id) for instance, or simply filter by a certain column:

SELECT * FROM Files WHERE UserId = 'MyUserId'

SELECT Name, LastModifiedDateTime FROM Files WHERE Name LIKE 'test%'

To work for Folder-level files, we need to specify the parentReference_path in the query.

 
SELECT * FROM files WHERE parentReference_path = '/drives/b!3LIvU2zISEqicGlWkgVknKxKT-q7gM5IqlBJ4w4MZqaX6BQc_vtwQpnqaldXkH9I/root:/Test_Shubham';

INSERT

INSERT operation is not supported for this table.

Note: See UploadFile (or CreateFolder to create a folder) to insert and update content to a file.

Columns

Name Type ReadOnly References Description
id [KEY] String True

Unique identifier for the file object.

Etag String False

Entity tag representing the version of the file for concurrency control.

createdBy_application_displayName String False

Display name of the application that created the file.

createdBy_application_id String False

Identifier of the application that created the file.

createdDateTime Datetime False

Timestamp indicating when the file was created.

description String False

User-defined or system-generated description of the file.

lastModifiedBy_application_displayName String False

Display name of the application that last modified the file.

lastModifiedBy_application_id String False

Identifier of the application that last modified the file.

lastModifiedDateTime Datetime False

Timestamp indicating the last modification time of the file.

name String False

Name of the file.

parentReference_driveId String False

Drive ID of the parent folder that contains the file.

parentReference_driveType String False

Type of drive (for example, personal, business, or document library) where the file resides.

parentReference_id String False

ID of the parent folder or drive reference.

parentReference_name String False

Name of the parent folder containing the file.

parentReference_path String False

Path from the drive root to the parent folder.

parentReference_shareId String False

Sharing ID associated with the parent reference.

parentReference_sharepointIds_listId String False

SharePoint list ID linked to the parent reference.

parentReference_sharepointIds_listItemId String False

List item ID in SharePoint for the parent reference.

parentReference_sharepointIds_listItemUniqueId String False

Unique ID of the list item in SharePoint for the parent reference.

parentReference_sharepointIds_siteId String False

Site ID in SharePoint associated with the parent reference.

parentReference_sharepointIds_siteUrl String False

URL of the SharePoint site related to the parent reference.

parentReference_sharepointIds_tenantId String False

Tenant ID for the SharePoint environment of the parent reference.

parentReference_sharepointIds_webId String False

Web ID in SharePoint for the parent reference.

parentReference_siteId String False

Site ID associated with the file's parent location.

webUrl String False

Web-accessible URL pointing to the file.

audio_album String False

Album title associated with the audio file.

audio_albumArtist String False

Primary artist for the album associated with the audio file.

audio_artist String False

Artist of the audio file.

audio_bitrate Long False

Bitrate of the audio content in bits per second.

audio_composers String False

List of composers for the audio content.

audio_copyright String False

Copyright statement for the audio file.

audio_disc Int False

Disc number for multi-disc audio content.

audio_discCount Int False

Total number of discs in the album.

audio_duration Long False

Duration of the audio content in milliseconds.

audio_genre String False

Genre of the audio content.

audio_hasDrm Bool False

Indicates whether the audio file is protected by digital rights management.

audio_isVariableBitrate Bool False

Indicates whether the audio file uses variable bitrate encoding.

audio_title String False

Title of the audio track.

audio_track Int False

Track number of the audio file within the album.

audio_trackCount Int False

Total number of tracks in the album.

audio_year Int False

Year the audio track was released.

content String False

File contents in raw or encoded format.

cTag String False

Client tag used for managing file changes and synchronization.

deleted_state String False

Indicates the deletion state of the file, such as deleted or notDeleted.

file_hashes_crc32Hash String False

CRC32 hash value used to validate file content integrity.

file_hashes_quickXorHash String False

QuickXorHash used for content comparison and validation.

file_hashes_sha1Hash String False

SHA-1 hash of the file contents.

file_hashes_sha256Hash String False

SHA-256 hash of the file contents.

file_mimeType String False

MIME type indicating the file format, such as text/plain or application/pdf.

file_processingMetadata Bool False

Indicates whether metadata processing is complete for the file.

fileSystemInfo_createdDateTime Datetime False

Creation timestamp of the file from the file system.

fileSystemInfo_lastAccessedDateTime Datetime False

Last accessed timestamp recorded by the file system.

fileSystemInfo_lastModifiedDateTime Datetime False

Last modified timestamp recorded by the file system.

folder_childCount Int False

Number of child items within the folder.

folder_view_sortBy String False

Default column used to sort items in the folder view.

folder_view_sortOrder String False

Sort order (ascending or descending) used in the folder view.

folder_view_viewType String False

Type of folder view, such as details or thumbnails.

image_height Int False

Height of the image in pixels.

image_width Int False

Width of the image in pixels.

location_altitude Double False

Altitude where the image or file was captured, in meters.

location_latitude Double False

Latitude coordinate where the file or photo was created.

location_longitude Double False

Longitude coordinate where the file or photo was created.

package_type String False

Type of file package, such as oneNote or PDFPackage.

pendingOperations_pendingContentUpdate_queuedDateTime Datetime False

Timestamp when a pending content update was queued.

photo_cameraMake String False

Manufacturer of the camera used to take the photo.

photo_cameraModel String False

Model of the camera used to take the photo.

photo_exposureDenominator Double False

Denominator value for the exposure time used in the photo.

photo_exposureNumerator Double False

Numerator value for the exposure time used in the photo.

photo_fNumber Double False

F-number indicating the aperture setting of the camera.

photo_focalLength Double False

Focal length of the camera lens in millimeters.

photo_iso Int False

ISO setting used when the photo was taken.

photo_orientation Int False

Orientation value of the photo, indicating how it was rotated when taken.

photo_takenDateTime Datetime False

Timestamp when the photo was captured.

publication_level String False

Indicates the publication level, such as draft or published.

publication_versionId String False

Version ID of the published file.

remoteItem_createdBy_application_displayName String False

Display name of the application that originally created the remote item.

remoteItem_createdBy_application_id String False

Identifier of the application that created the remote item.

remoteItem_createdDateTime Datetime False

Timestamp when the remote item was created.

remoteItem_file_hashes_crc32Hash String False

CRC32 hash of the remote file used to verify data integrity.

remoteItem_file_hashes_quickXorHash String False

QuickXorHash of the remote file for efficient content comparison.

remoteItem_file_hashes_sha1Hash String False

SHA-1 hash of the remote file content.

remoteItem_file_hashes_sha256Hash String False

SHA-256 hash of the remote file content.

remoteItem_file_mimeType String False

MIME type of the remote file, identifying its format.

remoteItem_file_processingMetadata Bool False

Indicates whether metadata processing is complete for the remote file.

remoteItem_fileSystemInfo_createdDateTime Datetime False

Timestamp of when the remote file was created in the file system.

remoteItem_fileSystemInfo_lastAccessedDateTime Datetime False

Timestamp of when the remote file was last accessed.

remoteItem_fileSystemInfo_lastModifiedDateTime Datetime False

Timestamp of when the remote file was last modified.

remoteItem_folder_childCount Int False

Number of child items in the remote folder.

remoteItem_folder_view_sortBy String False

Field used to sort child items in the remote folder view.

remoteItem_folder_view_sortOrder String False

Sort order used in the remote folder view (ascending or descending).

remoteItem_folder_view_viewType String False

Type of view used for the remote folder, such as list or grid.

remoteItem_id String False

Unique identifier for the remote item.

remoteItem_image_height Int False

Height of the remote image in pixels.

remoteItem_image_width Int False

Width of the remote image in pixels.

remoteItem_lastModifiedDateTime Datetime False

Timestamp indicating when the remote item was last modified.

remoteItem_name String False

Name of the remote item.

remoteItem_package_type String False

Package type of the remote item, such as oneNote or PDFPackage.

remoteItem_parentReference_driveId String False

Drive ID of the parent folder of the remote item.

remoteItem_parentReference_driveType String False

Type of drive containing the remote item.

remoteItem_parentReference_id String False

Identifier of the remote item's parent folder.

remoteItem_parentReference_name String False

Name of the folder containing the remote item.

remoteItem_parentReference_path String False

Full path from the drive root to the remote item's parent.

remoteItem_parentReference_shareId String False

Share ID associated with the parent of the remote item.

remoteItem_parentReference_sharepointIds_listId String False

SharePoint list ID associated with the remote item's parent.

remoteItem_parentReference_sharepointIds_listItemId String False

SharePoint list item ID for the remote item's parent.

remoteItem_parentReference_sharepointIds_listItemUniqueId String False

Unique ID of the SharePoint list item for the remote item's parent.

remoteItem_parentReference_sharepointIds_siteId String False

SharePoint site ID associated with the parent of the remote item.

remoteItem_parentReference_sharepointIds_siteUrl String False

SharePoint site URL associated with the remote item's parent.

remoteItem_parentReference_sharepointIds_tenantId String False

Tenant ID of the SharePoint site for the remote item's parent.

remoteItem_parentReference_sharepointIds_webId String False

Web ID of the SharePoint site for the remote item's parent.

remoteItem_parentReference_siteId String False

Site ID where the remote item's parent folder is located.

remoteItem_shared_scope String False

Scope of sharing for the remote item, such as users or organization.

remoteItem_shared_sharedDateTime Datetime False

Timestamp when the remote item was shared.

remoteItem_size Long False

Size of the remote item in bytes.

remoteItem_specialFolder_name String False

Name of the special folder associated with the remote item, such as documents or photos.

remoteItem_video_audioBitsPerSample Int False

Bit depth per audio sample in the remote video file.

remoteItem_video_audioChannels Int False

Number of audio channels in the remote video file.

remoteItem_video_audioSamplesPerSecond Int False

Audio sample rate in samples per second for the remote video.

remoteItem_video_bitrate Int False

Bitrate of the remote video content in bits per second.

remoteItem_video_duration Long False

Duration of the remote video in milliseconds.

remoteItem_video_fourCC String False

Four-character code (FourCC) identifying the video codec of the remote video.

remoteItem_video_frameRate Double False

Frame rate of the remote video in frames per second.

remoteItem_video_height Int False

Height of the remote video in pixels.

remoteItem_video_width Int False

Width of the remote video in pixels.

remoteItem_webDavUrl String False

WebDAV URL that provides remote access to the item.

remoteItem_webUrl String False

Publicly accessible web URL of the remote item.

searchResult_onClickTelemetryUrl String False

URL used to collect telemetry when a search result is clicked.

shared_owner_application_displayName String False

Display name of the application that owns the shared item.

shared_owner_application_id String False

Identifier of the application that owns the shared item.

shared_scope String False

Scope of the sharing, such as anonymous or organization.

shared_sharedDateTime Datetime False

Timestamp indicating when the item was shared.

sharepointIds_listId String False

SharePoint list ID associated with the item.

sharepointIds_listItemId String False

List item ID within the SharePoint list.

sharepointIds_listItemUniqueId String False

Globally unique identifier of the SharePoint list item.

sharepointIds_siteId String False

SharePoint site ID where the item resides.

sharepointIds_siteUrl String False

URL of the SharePoint site containing the item.

sharepointIds_tenantId String False

Tenant ID of the SharePoint organization.

sharepointIds_webId String False

Web ID of the SharePoint site.

size Long False

Total size of the file in bytes.

specialFolder_name String False

Type of special folder, such as documents or photos, associated with the item.

video_audioBitsPerSample Int False

Number of bits per audio sample in the video file.

video_audioChannels Int False

Number of audio channels in the video.

video_audioFormat String False

Format of the audio stream embedded in the video.

video_audioSamplesPerSecond Int False

Sampling rate of the audio stream in samples per second.

video_bitrate Int False

Bitrate of the video content in bits per second.

video_duration Long False

Total duration of the video in milliseconds.

video_fourCC String False

FourCC representing the video codec.

video_frameRate Double False

Video frame rate measured in frames per second.

video_height Int False

Vertical resolution of the video in pixels.

video_width Int False

Horizontal resolution of the video in pixels.

webDavUrl String False

WebDAV endpoint URL to access the file remotely.

UserId String False

Identifier of the user who owns or uploaded the file.

bundle_album_coverImageItemId String False

If the bundle is an album, this contains the item ID of the album's cover image.

bundle_childCount Int False

The number of child items contained immediately within this bundle.

malware_description String False

Contains a description of the detected malware if the drive item was found to contain malware. Read-only.

publication_checkedOutBy_application_displayName String False

The display name of the application that currently has the item checked out for editing.

publication_checkedOutBy_application_id String False

The application ID of the application that currently has the item checked out for editing.

remoteItem_video_audioFormat String False

The audio format (codec) of the video stored in the remote drive item.

CData Python Connector for Microsoft Office 365

GroupMembers

Members of a Microsoft 365 or security group.

Table Specific Information

Select

The connector will use the Microsoft Office 365 API to process WHERE clause conditions built with the following columns and operators. The rest of the filter is executed client side within the connector.

  • GroupId supports the '=' and IN operator.

For example, the following queries are processed server side:

SELECT * FROM GroupMembers WHERE GroupId IN ('4729c5e5-f923-4435-8a41-44423d42ea79', 'acabe397-8370-4c31-aeb7-2d7ae6b8cda1')

SELECT * FROM GroupMembers WHERE GroupId = '4729c5e5-f923-4435-8a41-44423d42ea79'

Insert

GroupId and MemberId fields are required to insert a new member to a group. MemberId correspond to the Id of the User, you can query the Users table to get the Id of the User you want to add as a member.

INSERT INTO GroupMembers (GroupId, MemberId) VALUES ('acabe397-8370-4c31-aeb7-2d7ae6b8cda1', 'ad9de185-a7af-4ae5-946e-17fc1bf596f0')

Delete

You can delete a group member by specifying GroupId and MemberId.

DELETE FROM GroupMembers WHERE GroupId = 'e557c6d9-3d9a-4658-b51a-4f242c2f8ec8' AND MemberId = 'ba074a2a-69be-45d2-8519-2cc5688bca1e'

Columns

Name Type ReadOnly References Description
GroupId [KEY] String True

The unique identifier of the group whose members are being retrieved.

MemberId [KEY] String True

The unique identifier of the member being added to or removed from the group.

CData Python Connector for Microsoft Office 365

Groups

Includes metadata about Microsoft 365 Groups, such as group names, descriptions, email aliases, and visibility settings.

Table Specific Information

Groups require Administrator permissions. To work with them, you must create your own custom OAuth App and set the appropriate OAuthClientId and OAuthClientSecret. In this app, you must configure it to request the Group.Read.All and the Group.ReadWrite.All permissions. This can be done at https://apps.dev.microsoft.com, or in the App Registrations panel at http://portal.azure.com. See Creating an Entra ID (Azure AD) Application for more details on creating a custom app.

To authorize Groups permissions, an administrator must grant the Groups permissions for your organization at large. This can be done via the administrator authorization endpoint. Simply have the administrator navigate to the following web page and grant permissions. Then run the OAuth authorization as normal afterwards.

https://login.microsoftonline.com/common/adminconsent?client_id=[YourClientId]&redirect_uri=http://localhost:33333

Note that if your organization has multiple tenants, you may replace the /common/ in the url with the tenant id to indicate which tenant to grant permissions for.

Select

Retrieve all groups, specify a GroupId (Id), or simply filter by a certain column:

SELECT * FROM Groups WHERE Id = 'Group Id here'
SELECT Id, Description, DisplayName FROM Groups WHERE DisplayName = 'test'

Insert

The following are required to create a new Security Group:

INSERT INTO Groups (DisplayName, MailEnabled, MailNickname, SecurityEnabled) VALUES ('Test group', false, 'test', true)

Columns

Name Type ReadOnly References Description
id [KEY] String True

Globally Unique Identifier (GUID) for the Microsoft 365 group.

Etag String False

Entity tag value used for optimistic concurrency checks on the group record.

deletedDateTime Datetime False

Date and time when the group was soft deleted. Null if the group is active.

allowExternalSenders Bool False

Indicates whether people outside the organization can send email to the group.

assignedLabels String False

Sensitivity labels currently applied to the group, stored in JSON format.

assignedLicenses String False

List of Azure Active Directory license SKUs that have been assigned to the group.

autoSubscribeNewMembers Bool False

Indicates whether any new member added to the group is automatically subscribed to receive email conversations.

classification String False

Data classification label, such as Public or Confidential, that the organization has applied to the group.

createdDateTime Datetime False

Timestamp indicating when the group was created.

description String False

Optional text describing the group's purpose or intended use.

displayName String False

Friendly display name for the group as shown in address books.

expirationDateTime Datetime False

Date and time when the group expires and is deleted if it is not renewed.

groupTypes String False

Collection that defines the group type. Accepted values are Unified for Microsoft 365 groups, DynamicMembership for dynamic groups.

hasMembersWithLicenseErrors Bool False

Indicates whether any group members have license assignment errors.

hideFromAddressLists Bool False

Indicates whether the group is hidden from the global address list.

hideFromOutlookClients Bool False

Indicates whether the group does not appear in Outlook clients.

isArchived Bool False

Indicates whether the group has been archived in Microsoft Teams.

isSubscribedByMail Bool False

Indicates whether the current user is subscribed to receive email for this group.

licenseProcessingState_state String False

Current status of processing group-based license assignments, such as InProgress or Completed.

mail String False

Primary SMTP address of the group.

mailEnabled Bool False

Indicates whether the group is configured to receive mail. Combined with securityEnabled determines group category.

mailNickname String False

Alias for the group that is unique within the organization and forms the local part of its email address.

membershipRule String False

Rule expression that defines the dynamic group membership, written in Azure Active Directory rule syntax.

membershipRuleProcessingState String False

Processing state of the dynamic membership rule, such as On or Paused.

onPremisesDomainName String False

Domain name where the corresponding on-premises group is located.

onPremisesLastSyncDateTime Datetime False

Timestamp when the group was last synchronized from the on-premises directory.

onPremisesNetBiosName String False

NetBIOS name of the on-premises domain for the group.

onPremisesProvisioningErrors String False

Collection of errors encountered during on-premises synchronization provisioning.

onPremisesSamAccountName String False

Security Account Manager (SAM) account name of the on-premises group.

onPremisesSecurityIdentifier String False

On-premises security identifier (SID) that maps to the cloud group.

onPremisesSyncEnabled Bool False

Indicates whether the group continues to be synchronized from the on-premises directory.

preferredDataLocation String False

Azure geography where the group's SharePoint and OneDrive data is stored.

preferredLanguage String False

Default language tag, for example en-US, used in group communications.

proxyAddresses String False

Set of proxy email addresses assigned to the group, such as SMTP:alias@example.com, sip:group@example.com.

renewedDateTime Datetime False

Timestamp when the group was last renewed through lifecycle policy.

securityEnabled Bool False

Indicates whether the group is security-enabled. When true and mailEnabled is also true, the group is a mail-enabled security group.

securityIdentifier String False

SID assigned to the group in Azure Active Directory.

theme String False

Custom theme identifier applied to the group in SharePoint or Teams.

unseenCount Int False

Number of group posts that the current user has not yet read.

visibility String False

Defines who can see the group. Possible values are Private, Public, HiddenMembership, or empty (interpreted as Public).

isAssignableToRole Bool False

Indicates whether this group can be assigned to a Microsoft Entra role. Can only be set during group creation and is immutable. Requires a Microsoft Entra ID P1 license.

isManagementRestricted Bool False

Indicates whether the group is a member of a restricted management administrative unit. Read-only.

resourceBehaviorOptions String False

Specifies the group behaviors that can be set for a Microsoft 365 group during creation. Can only be set at creation time (POST).

resourceProvisioningOptions String False

Specifies the group resources associated with the Microsoft 365 group. The possible value is Team, indicating this group is backed by a Microsoft Teams team.

serviceProvisioningErrors String False

Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a group object.

uniqueName String False

A unique identifier that can be assigned to a group and used as an alternate key. Immutable. Read-only.

welcomeMessageEnabled Bool False

Indicates whether the welcome message is enabled for this group, sending a greeting notification to new members.

CData Python Connector for Microsoft Office 365

LinkedResources

External resources linked to a To Do task.

Columns

Name Type ReadOnly References Description
applicationName String False

The app name of the source that sends the linkedResource.

displayName String False

The title of the linkedResource.

externalId String False

ID of the object that is associated with this task on the third-party/partner system.

webUrl String False

Deep link to the linkedResource.

todotaskid String False

The unique identifier of the To Do task this linked resource is associated with.

todotasklistid String False

The unique identifier of the task list containing the associated To Do task.

userid String False

The identifier of the user associated with this linked resource.

Id [KEY] String True

Server generated ID for the linkedResource.

CData Python Connector for Microsoft Office 365

MailFolders

Lists all mail folders within user mailboxes, such as Inbox, Sent Items, and custom folders. It enables folder-level message organization and navigation in Office365.

Columns

Name Type ReadOnly References Description
id [KEY] String False

Unique identifier for the mail folder, used to retrieve or reference the folder within the user's mailbox hierarchy.

childFolderCount Int False

Total number of child folders contained within this folder. Helps determine folder structure depth and sub-organization.

displayName String False

The display name of the mail folder as shown in the user interface, such as 'Inbox', 'Drafts', or custom folder names.

parentFolderId String False

Identifier of the parent folder. Used to establish the folder hierarchy and trace nesting relationships among mail folders.

totalItemCount Int False

The total number of mail items—both read and unread—contained in the folder, including messages, calendar items, or other supported types.

unreadItemCount Int False

The number of unread items in the folder, typically used to indicate pending or new messages.

userId String False

Represents the user who owns the mailbox containing the folder. This is used to scope the folder data to a specific user.

isHidden Bool False

Indicates whether the mail folder is hidden from normal folder views. Can only be set when creating the folder.

CData Python Connector for Microsoft Office 365

Messages

Contains email messages from user mailboxes, including subjects, senders, timestamps, and read status.

Table Specific Information

Select

You can retrieve all from Messages, specify a Message (Id), UserId, or ParentFolderId, or you can filter results by a certain column:

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

After the INSERT, a new Message will be created in the User's Drafts folder.

INSERT INTO Messages (Subject, Body_Content, UserId) VALUES ('New test Email', 'Test Email created.', 'User Id goes here')

Note: To send the mail, see SendMail.

Update

To update a message:

UPDATE Messages SET Subject = 'Email Updated', Body_Content = 'New Body Content' WHERE Id = 'MyMessageId'

Preserving HTML Formatting

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.

Known Issues

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 connector 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.

Columns

Name Type ReadOnly References Description
id [KEY] String True

Unique identifier for the message.

Etag String False

Entity tag representing the version of the message, used for concurrency control.

categories String False

List of categories assigned to the message, such as Red Category or Blue Category.

changeKey String False

Version-specific identifier that changes whenever the message is updated.

createdDateTime Datetime False

Timestamp indicating when the message was created in the mailbox.

lastModifiedDateTime Datetime False

Timestamp of the last modification to the message.

bccRecipients String False

Collection of recipients who received the message as BCC.

body_content String False

HTML or plain text content of the message body.

body_contentType String False

Specifies whether the message body content is in HTML or plain text format.

bodyPreview String False

Text preview of the message body, typically the first few lines.

ccRecipients String False

Collection of recipients who received the message as CC.

conversationId String False

Identifier that groups related messages into the same conversation thread.

conversationIndex Binary False

Binary value used to sort and order messages within the same conversation.

flag_completedDateTime_dateTime Datetime False

Timestamp marking when the follow-up flag was completed.

flag_completedDateTime_timeZone String False

Time zone associated with the flag completion date and time.

flag_flagStatus String False

Status of the follow-up flag, such as notFlagged, complete, or flagged.

from_emailAddress_address String False

Email address of the sender shown in the From field.

from_emailAddress_name String False

Display name of the sender shown in the From field.

hasAttachments Bool False

Indicates whether the message includes one or more file attachments.

importance String False

Priority level of the message: Low, Normal, or High.

inferenceClassification String False

Specifies if the message was classified as focused or other by the inbox rule system.

internetMessageHeaders String False

Raw internet headers of the email message, such as MIME-Version, From, To, and Received.

internetMessageId String False

Globally unique identifier assigned by the sending mail server.

isDeliveryReceiptRequested Bool False

Indicates whether a delivery receipt was requested for the message.

isDraft Bool False

Indicates whether the message has been saved as a draft and not yet sent.

isRead Bool False

Indicates whether the message has been read by the user.

isReadReceiptRequested Bool False

Indicates whether a read receipt was requested for the message.

parentFolderId String False

Identifier of the folder that contains the message.

receivedDateTime Datetime False

Timestamp when the message was received by the mailbox.

replyTo String False

Collection of addresses that replies should be sent to, overriding the From address.

sender_emailAddress_address String False

Email address of the actual sender of the message.

sender_emailAddress_name String False

Display name of the actual sender of the message.

sentDateTime Datetime False

Timestamp when the message was sent.

subject String False

Subject line of the message as entered by the sender.

toRecipients String False

Collection of recipients in the To field of the message.

uniqueBody_content String False

Message body content that excludes previous replies or forwards.

uniqueBody_contentType String False

Specifies the format of the unique body content: HTML or plain text.

webLink String False

URL to open the message directly in Outlook on the web.

UserId String False

Identifier of the user who owns or sent the message.

IsEventMessage Bool False

Indicates whether the message is a calendar invitation or event-related message.

CData Python Connector for Microsoft Office 365

Tasks

Lists individual tasks from Microsoft To Do or Planner, with details like titles, due dates, and completion status.

Table Specific Information

Tasks requires the Groups and Tasks permissions from the Microsoft Graph. For this reason, you must create your own OAuth App. Please see Creating an Entra ID (Azure AD) Application for more details.

Select

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)

Insert

To insert a Task, the associated plan must be specified:

INSERT INTO Tasks (Title, PlanId) VALUES ('My Title', '99999999-eeeeeeeee')

Update

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=\"'

Delete

To delete a Task, both the Id and Etag must be specified:

DELETE FROM Tasks WHERE Id = 'xxxxxx-AAAAAAAAAAA' AND Etag = 'W/\"XXXXXXQEBAQEBAQEBAQEBAQEBARCc=\"'

Columns

Name Type ReadOnly References Description
activeChecklistItemCount Int False

Number of checklist items that are not yet completed in the task.

appliedCategories String False

Set of category labels applied to the task, such as category1, category2, category3.

assigneePriority String False

Priority value used to determine task assignment order among multiple users.

assignments String False

List of user assignments for the task, including details like assignment status and assigned time.

bucketId String False

Identifier of the bucket within the plan where the task is located.

checklistItemCount Int False

Total number of checklist items associated with the task.

completedBy_application_displayName String False

Display name of the application that marked the task as completed.

completedBy_application_id String False

Identifier of the application that marked the task as completed.

completedDateTime Datetime False

Timestamp indicating when the task was marked as completed.

conversationThreadId String False

Identifier of the conversation thread associated with the task in Microsoft 365 Groups.

createdBy_application_displayName String False

Display name of the application that created the task.

createdBy_application_id String False

Identifier of the application that created the task.

createdDateTime Datetime False

Timestamp when the task was created.

dueDateTime Datetime False

Date and time when the task is due.

hasDescription Bool False

Indicates whether the task has a non-empty description.

orderHint String False

Ordering hint used to determine the position of the task within the bucket.

percentComplete Int False

Percentage of the task that is completed, typically between 0 and 100.

planId String False

Identifier of the plan to which the task belongs.

previewType String False

Specifies how the task preview is rendered in the UI. Possible values include automatic, checklist, description, reference.

priority Int False

Numeric value representing the priority of the task. Lower values indicate higher priority.

referenceCount Int False

Number of external references or linked resources associated with the task.

startDateTime Datetime False

Date and time when work on the task is scheduled to start.

title String False

Title or name of the task.

Etag String False

Entity tag used to track the version of the task for concurrency control.

Id [KEY] String False

Unique identifier of the task.

CData Python Connector for Microsoft Office 365

TodoTaskLists

Task lists in Microsoft To Do containing one or more tasks.

Columns

Name Type ReadOnly References Description
displayName String False

The name of the task list.

isOwner Bool False

True if the user is owner of the given task list.

isShared Bool False

True if the task list is shared with other users.

wellknownListName String False

Property indicating the list name if the given list is a well-known list. The possible values are: none, defaultList, flaggedEmails, unknownFutureValue.

userid String False

The identifier of the user who owns this task list.

Id [KEY] String True

The identifier of the task list, unique in the user's mailbox. Read-only.

CData Python Connector for Microsoft Office 365

TodoTasks

Individual tasks within a Microsoft To Do task list.

Columns

Name Type ReadOnly References Description
body_content String False

The text content of the task body.

body_contentType String False

The type of the content in the task body. The possible values are text and html.

bodyLastModifiedDateTime Datetime False

The date and time when the task body was last modified. By default, it is in UTC.

categories String False

The categories associated with the task. Each category corresponds to the displayName property of an outlookCategory that the user has defined.

completedDateTime_dateTime Datetime False

The date and time in the specified time zone that the task was finished.

completedDateTime_timeZone String False

The time zone of the completedDateTime property.

createdDateTime Datetime False

The date and time when the task was created. By default, it is in UTC.

dueDateTime_dateTime Datetime False

The date and time in the specified time zone that the task is to be finished.

dueDateTime_timeZone String False

The time zone of the dueDateTime property.

hasAttachments Bool False

Indicates whether the task has attachments.

importance String False

The importance of the task. The possible values are: low, normal, high.

isReminderOn Bool False

Set to true if an alert is set to remind the user of the task.

lastModifiedDateTime Datetime False

The date and time when the task was last modified. By default, it is in UTC.

recurrence_pattern_dayOfMonth Int False

The day of the month on which the task recurs. Required if type is absoluteMonthly or absoluteYearly.

recurrence_pattern_daysOfWeek String False

A collection of the days of the week on which the task recurs. The possible values are: sunday, monday, tuesday, wednesday, thursday, friday, saturday.

recurrence_pattern_firstDayOfWeek String False

The first day of the week. The possible values are: sunday, monday, tuesday, wednesday, thursday, friday, saturday.

recurrence_pattern_index String False

Specifies on which instance of the allowed days specified in daysOfWeek the task occurs. The possible values are: first, second, third, fourth, last.

recurrence_pattern_interval Int False

The number of units between occurrences, where units can be in days, weeks, months, or years, depending on the type.

recurrence_pattern_month Int False

The month in which the task recurs. This is a number from 1 to 12.

recurrence_pattern_type String False

The recurrence pattern type. The possible values are: daily, weekly, absoluteMonthly, relativeMonthly, absoluteYearly, relativeYearly.

recurrence_range_endDate Date False

The date to stop applying the recurrence pattern. Depending on the recurrence pattern of the event, the last occurrence of the meeting may not be this date.

recurrence_range_numberOfOccurrences Int False

The number of times to repeat the task.

recurrence_range_recurrenceTimeZone String False

Time zone for the startDate and endDate properties.

recurrence_range_startDate Date False

The date to start applying the recurrence pattern.

recurrence_range_type String False

The recurrence range type. The possible values are: endDate, noEnd, numbered.

reminderDateTime_dateTime Datetime False

The date and time in the specified time zone for a reminder alert of the task to occur.

reminderDateTime_timeZone String False

The time zone of the reminderDateTime property.

startDateTime_dateTime Datetime False

The date and time in the specified time zone at which the task is scheduled to start.

startDateTime_timeZone String False

The time zone of the startDateTime property.

status String False

Indicates the state or progress of the task. The possible values are: notStarted, inProgress, completed, waitingOnOthers, deferred.

title String False

A brief description of the task.

todotasklistid String False

The unique identifier of the task list this task belongs to.

userid String False

The identifier of the user associated with this task.

Id [KEY] String True

Unique identifier for the task. By default, this value changes when the item is moved from one list to another.

CData Python Connector for Microsoft Office 365

Users

Supports reading, creating, updating, and deleting Office365 user accounts. Includes profile and licensing details.

Table Specific Information

Select

Query the Users table by retrieving everything from Users, specifying a Id, or filtering by a column:

SELECT * FROM Users WHERE Id = '616391f0-32d8-4127-8f25-aa55771d6617'

SELECT DisplayName, Id FROM Users WHERE DisplayName LIKE 'John%'

Insert

The following are required to create a new organizational User:

INSERT INTO Users (AccountEnabled, DisplayName, MailNickname, UserPrincipalName, PasswordProfile_ForceChangePasswordNextSignIn, PasswordProfile_Password) VALUES (false, 'John Smith', 'JohnS', 'smithjohn@yourcompanydomain.com', true, '123password')

Columns

Name Type ReadOnly References Description
id [KEY] String True

Globally Unique Identifier (GUID) assigned to the user object in Azure Active Directory.

deletedDateTime Datetime False

Timestamp when the user was soft deleted from the directory; null if the account is active.

accountEnabled Bool False

Indicates whether the account is enabled for sign-in and Azure AD authentication.

businessPhones String False

Comma-separated list of business phone numbers for the user, in E.164 or in local format, for example +1 4255550100, +1 4255550120.

city String False

City portion of the user's physical address.

companyName String False

Name of the company or organization where the user works.

country String False

Country or region listed in the user's address.

createdDateTime Datetime False

Timestamp when the user account was created in Azure Active Directory.

department String False

Department or organizational unit the user belongs to.

displayName String False

Full display name for the user, shown in address books and Teams.

employeeHireDate Datetime False

Date when the employee was hired, according to human resources records.

employeeId String False

Employee identifier used by payroll or HR systems.

employeeLeaveDateTime Datetime False

Date and time when the employee left the organization; null if still employed.

employeeOrgData_costCenter String False

Cost center code associated with the user for financial tracking.

employeeOrgData_division String False

Division name within the organization associated with the user.

employeeType String False

Classification of employment, such as Employee, Contractor, or Vendor.

givenName String False

User's given name (first name).

identities String False

Collection of sign-in identities for the user, each with issuer, issuerAssignedId, and signInType.

imAddresses String False

Comma-separated list of instant messaging addresses for the user, for example sip:user@example.com, sip:user2@example.com.

isResourceAccount Bool False

Indicates whether this account represents a resource such as a room or equipment mailbox.

jobTitle String False

Job title of the user, such as Senior Analyst.

lastPasswordChangeDateTime Datetime False

Most recent date and time when the user changed their password.

mail String False

Primary SMTP email address for the user.

mailNickname String False

Alias used to generate the user's email address; must be unique within the tenant.

mobilePhone String False

Mobile phone number for the user, stored in E.164 format where possible.

officeLocation String False

Office location, room number, or desk identifier for the user.

onPremisesDistinguishedName String False

Distinguished name (DN) of the on-premises Active Directory object mapped to the user.

onPremisesDomainName String False

Domain name of the on-premises Active Directory forest where the user originates.

onPremisesExtensionAttributes_extensionAttribute1 String False

Custom extension attribute 1 replicated from on-premises Active Directory.

onPremisesExtensionAttributes_extensionAttribute10 String False

Custom extension attribute 10 replicated from on-premises Active Directory.

onPremisesExtensionAttributes_extensionAttribute11 String False

Custom extension attribute 11 replicated from on-premises Active Directory.

onPremisesExtensionAttributes_extensionAttribute12 String False

Custom extension attribute 12 replicated from on-premises Active Directory.

onPremisesExtensionAttributes_extensionAttribute13 String False

Custom extension attribute 13 replicated from on-premises Active Directory.

onPremisesExtensionAttributes_extensionAttribute14 String False

Custom extension attribute 14 replicated from on-premises Active Directory.

onPremisesExtensionAttributes_extensionAttribute15 String False

Custom extension attribute 15 replicated from on-premises Active Directory.

onPremisesExtensionAttributes_extensionAttribute2 String False

Custom extension attribute 2 replicated from on-premises Active Directory.

onPremisesExtensionAttributes_extensionAttribute3 String False

Custom extension attribute 3 replicated from on-premises Active Directory.

onPremisesExtensionAttributes_extensionAttribute4 String False

Custom extension attribute 4 replicated from on-premises Active Directory.

onPremisesExtensionAttributes_extensionAttribute5 String False

Custom extension attribute 5 replicated from on-premises Active Directory.

onPremisesExtensionAttributes_extensionAttribute6 String False

Custom extension attribute 6 replicated from on-premises Active Directory.

onPremisesExtensionAttributes_extensionAttribute7 String False

Custom extension attribute 7 replicated from on-premises Active Directory.

onPremisesExtensionAttributes_extensionAttribute8 String False

Custom extension attribute 8 replicated from on-premises Active Directory.

onPremisesExtensionAttributes_extensionAttribute9 String False

Custom extension attribute 9 replicated from on-premises Active Directory.

onPremisesImmutableId String False

Immutable identifier used to map the cloud user to an on-premises Active Directory object.

onPremisesLastSyncDateTime Datetime False

Timestamp of the most recent synchronization from on-premises Active Directory.

onPremisesProvisioningErrors String False

List of provisioning errors returned during directory synchronization.

onPremisesSamAccountName String False

SAMAccountName from on-premises Active Directory, used for legacy authentication.

onPremisesSecurityIdentifier String False

Security identifier (SID) assigned to the on-premises object.

onPremisesSyncEnabled Bool False

Indicates whether the object continues to synchronize from on-premises Active Directory.

onPremisesUserPrincipalName String False

User principal name (UPN) of the on-premises object.

otherMails String False

Comma-separated collection of additional SMTP addresses associated with the user, such as alias1@example.com, alias2@example.com.

passwordProfile_forceChangePasswordNextSignIn Bool False

Indicates whether the user must change password at the next sign-in.

passwordProfile_forceChangePasswordNextSignInWithMfa Bool False

Indicates whether the user must change password at next sign-in and complete multifactor authentication.

passwordProfile_password String False

Write-only initial password set for the user during creation or reset.

postalCode String False

Postal or ZIP code portion of the user's address.

preferredLanguage String False

Preferred language for the user, expressed as an ISO language tag such as en-US.

securityIdentifier String False

SID assigned to the user in Azure Active Directory.

state String False

State or province portion of the user's physical address.

streetAddress String False

Street name, number, and unit for the user's physical address.

surname String False

User's family name (last name).

userPrincipalName String False

Principal name the user uses to sign in, typically of the form user@contoso.com.

userType String False

Identifies the type of user: Member for internal users, Guest for external users invited to the tenant.

assignedLicenses String False

The licenses assigned to the user, including inherited licenses from group membership. Not nullable.

authorizationInfo_certificateUserIds String False

The collection of unique certificate user IDs associated with the user's authorization information, used for certificate-based authentication.

identityParentId String False

The parent identity ID associated with the user account, used for identity hierarchy resolution within the directory.

isManagementRestricted Bool False

Indicates whether the user is a member of a restricted management administrative unit. Read-only.

serviceProvisioningErrors String False

Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object.

CData Python Connector for Microsoft Office 365

Views

Views are similar to tables in the way that data is represented; however, views are read-only.

Queries can be executed against a view as if it were a normal table.

CData Python Connector for Microsoft Office 365 Views

Name Description
Buildings Lists building place resources and building-specific connectivity metadata.
CalendarView Returns a filtered list of calendar events such as occurrences, exceptions, and single instances, within a specified time range from a user's calendar.
Desks Lists desk place resources and desk-specific equipment/mailbox metadata.
EventAttachments Displays attachments related to calendar events, including file metadata and associated event identifiers.
EventOccurrences Provides a flattened view of recurring event instances, enabling analysis of each occurrence individually.
Floors Lists floor place resources and floor-level ordering metadata.
MessageAttachments Retrieves email message attachments with metadata like attachment names, sizes, and parent message IDs.
Places Lists Microsoft 365 place resources and shared location metadata used to represent rooms, buildings, desks, floors, and workspaces.
Plans Displays task plan data from Microsoft Planner, including plan names, owners, and associated group IDs.
Rooms Lists room place resources and room-specific device/capacity metadata from Microsoft 365.
Workspaces Lists workspace place resources and workspace-specific capacity/device metadata.

CData Python Connector for Microsoft Office 365

Buildings

Lists building place resources and building-specific connectivity metadata.

Columns

Name Type References Description
id [KEY] String Unique identifier for the building resource.
geoCoordinates_accuracy String Accuracy (in meters) of the geocoordinate reading.
geoCoordinates_altitude String Altitude coordinate for the building.
geoCoordinates_altitudeAccuracy String Accuracy of the altitude value.
geoCoordinates_latitude String Latitude coordinate for the building.
geoCoordinates_longitude String Longitude coordinate for the building.
resourceLinks String Resource links associated with the building.
wifiState String Wi-Fi state/status information for the building.
PlaceObjectType [KEY] String Type discriminator for the place object returned by Microsoft Graph.
displayName String Display name of the building.
label String Free-form label associated with the building.
phone String Primary phone number for the building.
parentId String Identifier of the parent place in the hierarchy.
tags String Tags applied to the building for categorization/search.
isWheelChairAccessible Bool Indicates whether the building is wheelchair accessible.
address_street String Street portion of the building address.
address_city String City portion of the building address.
address_state String State or province portion of the building address.
address_postalCode String Postal or ZIP code of the building address.
address_countryOrRegion String Country or region portion of the building address.

CData Python Connector for Microsoft Office 365

CalendarView

Returns a filtered list of calendar events such as occurrences, exceptions, and single instances, within a specified time range from a user's calendar.

Table Specific Information

Select

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'

Columns

Name Type References Description
id [KEY] String Unique identifier for the calendar event.
Etag String Entity tag used to identify changes to the event object.
categories String List of user-defined categories associated with the event.
changeKey String Version key for the event, used to track updates.
createdDateTime Datetime Timestamp indicating when the event was created.
lastModifiedDateTime Datetime Timestamp indicating the last time the event was updated.
allowNewTimeProposals Bool Indicates whether attendees can suggest new meeting times.
attendees String List of people invited to the event, including required and optional attendees.
body_content String Main content of the event body.
body_contentType String Type of the content in the event body, such as HTML or plain text.
bodyPreview String Short preview of the event body content.
end_dateTime Datetime Date and time when the event ends.
end_timeZone String Time zone of the event end time.
hasAttachments Bool Indicates whether the event includes file attachments.
hideAttendees Bool Indicates whether attendee details are hidden from others.
iCalUId String Unique iCalendar identifier used across systems.
importance String Importance level of the event such as low, normal, or high.
isAllDay Bool Specifies whether the event is an all-day event.
isCancelled Bool Indicates whether the event has been canceled.
isDraft Bool Indicates whether the event is in draft status.
isOnlineMeeting Bool Specifies whether the event is an online meeting.
isOrganizer Bool Indicates whether the current user is the organizer of the event.
isReminderOn Bool Indicates whether a reminder is set for the event.
location_address_city String City where the event location is situated.
location_address_countryOrRegion String Country or region of the event location.
location_address_postalCode String Postal code of the event location.
location_address_state String State or province of the event location.
location_address_street String Street address of the event location.
location_coordinates_accuracy Double Accuracy of the provided coordinates in meters.
location_coordinates_altitude Double Altitude of the event location in meters.
location_coordinates_altitudeAccuracy Double Accuracy of the altitude value in meters.
location_coordinates_latitude Double Latitude of the event location.
location_coordinates_longitude Double Longitude of the event location.
location_displayName String Display name for the location of the event.
location_locationEmailAddress String Email address associated with the location, if available.
location_locationType String Type of location, such as default, conference room, or custom.
location_locationUri String URI that uniquely identifies the location resource.
location_uniqueId String Unique identifier for the location object.
location_uniqueIdType String Specifies the format of the unique location ID.
locations String List of all locations associated with the event.
onlineMeeting_conferenceId String Conference ID provided by the online meeting provider.
onlineMeeting_joinUrl String URL used by attendees to join the online meeting.
onlineMeeting_phones String List of phone numbers that can be used to dial into the meeting.
onlineMeeting_quickDial String Preformatted string for one-tap mobile dialing into the meeting.
onlineMeeting_tollFreeNumbers String Toll-free numbers attendees can use to join. Values are comma-separated with 1 space after each comma.
onlineMeeting_tollNumber String Primary toll number attendees can use to join the meeting.
onlineMeetingProvider String Name of the service provider hosting the online meeting, such as Skype.
onlineMeetingUrl String URL that opens the full online meeting experience in a browser.
organizer_emailAddress_address String Email address of the meeting organizer.
organizer_emailAddress_name String Display name of the person organizing the meeting.
originalEndTimeZone String Time zone in which the event was originally set to end.
originalStart Datetime Original start date and time of the event before any updates.
originalStartTimeZone String Time zone in which the event was originally scheduled to start.
recurrence_pattern_dayOfMonth Int Day of the month when the recurring event occurs.
recurrence_pattern_daysOfWeek String Days of the week when the event recurs. Values are comma-separated with 1 space after each comma.
recurrence_pattern_firstDayOfWeek String The first day of the week used in the recurrence pattern.
recurrence_pattern_index String Specifies which instance in the recurrence, such as first, second, or last.
recurrence_pattern_interval Int Interval between recurrences, based on the pattern type.
recurrence_pattern_month Int Month of the year when the event recurs, used for yearly patterns.
recurrence_pattern_type String Type of recurrence pattern, such as daily, weekly, monthly, or yearly.
recurrence_range_endDate Datetime Date when the recurrence pattern ends.
recurrence_range_numberOfOccurrences Int Number of times the recurring event should occur.
recurrence_range_recurrenceTimeZone String Time zone used for the recurrence schedule.
recurrence_range_startDate Datetime Start date of the recurrence range.
recurrence_range_type String Defines the way recurrence ends, such as after a number of occurrences or on a specific end date.
reminderMinutesBeforeStart Int Number of minutes before the event start at which the reminder triggers.
responseRequested Bool Indicates whether the organizer is requesting responses from attendees.
responseStatus_response String The attendee's response status, such as accepted, declined, or tentative.
responseStatus_time Datetime Date and time when the attendee submitted their response.
sensitivity String Sensitivity setting for the event, such as normal, personal, private, or confidential.
seriesMasterId String Identifier of the master event in a recurring series.
showAs String How the event appears on the calendar, such as free, busy, or tentative.
start_dateTime Datetime Date and time when the event starts.
start_timeZone String Time zone associated with the event's start time.
subject String Title or subject line of the calendar event.
transactionId String Client-supplied ID used to ensure idempotency of create requests.
type String Type of event, such as singleInstance, occurrence, or exception.
webLink String URL to view the event in a web browser.
UserId String Identifier of the user associated with the calendar event.
CalendarId String Identifier of the calendar that contains the event.
CalendarGroupId String The ID of the calendar group associated with the event's calendar. May be null if the event is not retrieved through a calendar group.
cancelledOccurrences String Contains the occurrence IDs of canceled instances in a recurring event series, if this event is the series master.

CData Python Connector for Microsoft Office 365

Desks

Lists desk place resources and desk-specific equipment/mailbox metadata.

Columns

Name Type References Description
id [KEY] String Unique identifier for the desk resource.
geoCoordinates_accuracy String Accuracy (in meters) of the geocoordinate reading.
geoCoordinates_altitude String Altitude coordinate for the desk.
geoCoordinates_altitudeAccuracy String Accuracy of the altitude value.
geoCoordinates_latitude String Latitude coordinate for the desk.
geoCoordinates_longitude String Longitude coordinate for the desk.
displayDeviceName String Name of the desk's display device, if configured.
heightAdjustableState String Height-adjustable capability/state for the desk.
mailboxDetails_emailAddress String Mailbox email address associated with the desk, when available.
mailboxDetails_externalDirectoryObjectId String External directory object ID from mailbox details for the desk.
PlaceObjectType [KEY] String Type discriminator for the place object returned by Microsoft Graph.
displayName String Display name of the desk.
label String Free-form label associated with the desk.
phone String Primary phone number for the desk.
parentId String Identifier of the parent place in the hierarchy.
tags String Tags applied to the desk for categorization/search.
isWheelChairAccessible Bool Indicates whether the desk is wheelchair accessible.
address_street String Street portion of the desk address.
address_city String City portion of the desk address.
address_state String State or province portion of the desk address.
address_postalCode String Postal or ZIP code of the desk address.
address_countryOrRegion String Country or region portion of the desk address.

CData Python Connector for Microsoft Office 365

EventAttachments

Displays attachments related to calendar events, including file metadata and associated event identifiers.

Columns

Name Type References Description
EventId String

Events.Id

id [KEY] String
contentType String
isInline Bool
lastModifiedDateTime Datetime
name String
size Int
event_categories String
event_changeKey String
event_createdDateTime Datetime
event_lastModifiedDateTime Datetime
event_allowNewTimeProposals Bool
event_attendees String
event_body String
event_bodyPreview String
event_cancelledOccurrences String
event_end String
event_hasAttachments Bool
event_hideAttendees Bool
event_iCalUId String
event_importance String
event_isAllDay Bool
event_isCancelled Bool
event_isDraft Bool
event_isOnlineMeeting Bool
event_isOrganizer Bool
event_isReminderOn Bool
event_location String
event_locations String
event_onlineMeeting String
event_onlineMeetingProvider String
event_onlineMeetingUrl String
event_organizer String
event_originalEndTimeZone String
event_originalStart Datetime
event_originalStartTimeZone String
event_recurrence String
event_reminderMinutesBeforeStart Int
event_responseRequested Bool
event_responseStatus String
event_sensitivity String
event_seriesMasterId String
event_showAs String
event_start String
event_subject String
event_transactionId String
event_type String
event_webLink String
contentType String
isInline Bool
lastModifiedDateTime Datetime
name String
size Int

CData Python Connector for Microsoft Office 365

EventOccurrences

Provides a flattened view of recurring event instances, enabling analysis of each occurrence individually.

Table Specific Information

Select

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.

Columns

Name Type References Description
GroupId String Identifier of the Microsoft 365 group that owns the event.
UserId String Identifier of the user who is associated with the event.
Events_id [KEY] String

Events.id

Identifier of the parent event series from which this occurrence is derived.
id [KEY] String Unique identifier for this specific event occurrence.
categories String List of categories assigned to the event for classification or filtering.
changeKey String Version key that updates each time the event occurrence is modified.
createdDateTime Datetime Timestamp indicating when the event occurrence was created.
lastModifiedDateTime Datetime Timestamp indicating the last time the event occurrence was modified.
allowNewTimeProposals Bool Indicates whether attendees can suggest a new time for the event.
attendees String List of attendees invited to the event. For example: alice@example.com, bob@example.com.
body_content String Main message body or description of the event.
body_contentType String Format of the message body, such as text or HTML.
bodyPreview String Short preview of the event message body.
end_dateTime Datetime Scheduled end time of the event.
end_timeZone String Time zone used for the event's end time.
hasAttachments Bool Indicates whether the event occurrence includes file attachments.
hideAttendees Bool Indicates whether attendee information is hidden from others.
iCalUId String Unique identifier used for cross-system calendar interoperability.
importance String Level of importance assigned to the event, such as low, normal, or high.
isAllDay Bool Indicates whether the event is an all-day event with no specific start or end time.
isCancelled Bool Indicates whether the event occurrence has been canceled.
isDraft Bool Indicates whether the event is still a draft and not finalized.
isOnlineMeeting Bool Indicates whether the event includes an online meeting link.
isOrganizer Bool Indicates whether the current user is the organizer of the event.
isReminderOn Bool Indicates whether a reminder is set for this event occurrence.
location_address_city String City of the event location.
location_address_countryOrRegion String Country or region of the event location.
location_address_postalCode String Postal code of the event location.
location_address_state String State or province of the event location.
location_address_street String Street address of the event location.
location_coordinates_accuracy Double Accuracy of the provided location coordinates in meters.
location_coordinates_altitude Double Altitude of the location in meters above sea level.
location_coordinates_altitudeAccuracy Double Accuracy of the altitude measurement in meters.
location_coordinates_latitude Double Latitude of the event location.
location_coordinates_longitude Double Longitude of the event location.
location_displayName String Display name for the event location.
location_locationEmailAddress String Email address of the location resource, if applicable.
location_locationType String Type of location, such as default, conference room, or home address.
location_locationUri String Uniform Resource Identifier (URI) for the location, if available.
location_uniqueId String Unique identifier for the physical or virtual location.
location_uniqueIdType String Type of identifier used for the location, such as locationStore or directory.
locations String List of additional locations for the event. For example: Main Hall, Room 204.
onlineMeeting_conferenceId String Unique conference ID for the online meeting provider.
onlineMeeting_joinUrl String Join URL that participants can use to enter the online meeting.
onlineMeeting_phones String List of dial-in phone numbers for the online meeting.
onlineMeeting_quickDial String Quick dial string for joining the online meeting directly.
onlineMeeting_tollFreeNumbers String List of toll-free phone numbers for the online meeting. For example: 8001234567, 8887654321.
onlineMeeting_tollNumber String Toll number provided for participants to join by phone.
onlineMeetingProvider String Online meeting provider, such as Teams or Skype for Business.
onlineMeetingUrl String URL used to launch or view the online meeting.
organizer_emailAddress_address String Email address of the event organizer.
organizer_emailAddress_name String Display name of the event organizer.
originalEndTimeZone String Time zone used for the original end time before any changes.
originalStart Datetime Original start time of the event before any rescheduling.
originalStartTimeZone String Time zone used for the original start time.
recurrence_pattern_dayOfMonth Int Day of the month on which the event repeats, if applicable.
recurrence_pattern_daysOfWeek String Days of the week on which the event repeats. For example: Monday, Wednesday, Friday.
recurrence_pattern_firstDayOfWeek String First day of the week for the recurrence pattern.
recurrence_pattern_index String Position in the month the event recurs, such as first, second, or last.
recurrence_pattern_interval Int Interval at which the event repeats, such as every 2 days or every 3 weeks.
recurrence_pattern_month Int Month of the year when the event recurs, used for yearly patterns.
recurrence_pattern_type String Pattern type used for recurrence, such as daily, weekly, monthly, or yearly.
recurrence_range_endDate Datetime Date on which the recurrence pattern ends.
recurrence_range_numberOfOccurrences Int Total number of times the event should occur.
recurrence_range_recurrenceTimeZone String Time zone used for the recurrence pattern.
recurrence_range_startDate Datetime Start date of the recurrence range.
recurrence_range_type String Specifies whether the recurrence ends by end date, number of occurrences, or has no end.
reminderMinutesBeforeStart Int Number of minutes before the event when a reminder should be triggered.
responseRequested Bool Indicates whether the organizer requests attendee responses.
responseStatus_response String Current response status from the attendee, such as accepted or declined.
responseStatus_time Datetime Timestamp of the most recent response from the attendee.
sensitivity String Sensitivity label for the event, such as normal, personal, private, or confidential.
seriesMasterId String Identifier of the master series event, used to link recurring occurrences.
showAs String Calendar availability status during the event, such as free, tentative, busy, or out of office.
start_dateTime Datetime Scheduled start time of the event.
start_timeZone String Time zone used for the event's start time.
subject String Subject or title of the event.
transactionId String Client-supplied identifier used to detect duplicate event creations.
type String Type of event occurrence, such as singleInstance, occurrence, exception, or seriesMaster.
webLink String URL to open the event occurrence in a web browser.
cancelledOccurrences String Contains the occurrence IDs of canceled instances in the recurring event series, if this occurrence belongs to a series master.

CData Python Connector for Microsoft Office 365

Floors

Lists floor place resources and floor-level ordering metadata.

Columns

Name Type References Description
id [KEY] String Unique identifier for the floor resource.
geoCoordinates_accuracy String Accuracy (in meters) of the geocoordinate reading.
geoCoordinates_altitude String Altitude coordinate for the floor.
geoCoordinates_altitudeAccuracy String Accuracy of the altitude value.
geoCoordinates_latitude String Latitude coordinate for the floor.
geoCoordinates_longitude String Longitude coordinate for the floor.
sortOrder Int Display sort order value used to order floors.
PlaceObjectType [KEY] String Type discriminator for the place object returned by Microsoft Graph.
displayName String Display name of the floor.
label String Free-form label associated with the floor.
phone String Primary phone number for the floor.
parentId String Identifier of the parent place in the hierarchy.
tags String Tags applied to the floor for categorization/search.
isWheelChairAccessible Bool Indicates whether the floor is wheelchair accessible.
address_street String Street portion of the floor address.
address_city String City portion of the floor address.
address_state String State or province portion of the floor address.
address_postalCode String Postal or ZIP code of the floor address.
address_countryOrRegion String Country or region portion of the floor address.

CData Python Connector for Microsoft Office 365

MessageAttachments

Retrieves email message attachments with metadata like attachment names, sizes, and parent message IDs.

Columns

Name Type References Description
MessageId [KEY] String

Messages.Id

id [KEY] String
contentType String
isInline Bool
lastModifiedDateTime Datetime
name String
size Int
message_categories String
message_changeKey String
message_createdDateTime Datetime
message_lastModifiedDateTime Datetime
message_bccRecipients String
message_body String
message_bodyPreview String
message_ccRecipients String
message_conversationId String
message_conversationIndex Binary
message_flag String
message_from String
message_hasAttachments Bool
message_importance String
message_inferenceClassification String
message_internetMessageHeaders String
message_internetMessageId String
message_isDeliveryReceiptRequested Bool
message_isDraft Bool
message_isRead Bool
message_isReadReceiptRequested Bool
message_parentFolderId String
message_receivedDateTime Datetime
message_replyTo String
message_sender String
message_sentDateTime Datetime
message_subject String
message_toRecipients String
message_uniqueBody String
message_webLink String
userid String

CData Python Connector for Microsoft Office 365

Places

Lists Microsoft 365 place resources and shared location metadata used to represent rooms, buildings, desks, floors, and workspaces.

Columns

Name Type References Description
id [KEY] String Unique identifier for the place resource.
PlaceObjectType [KEY] String Type discriminator for the place object returned by Microsoft Graph.
Etag String Entity tag used for optimistic concurrency/version tracking.
displayName String Display name of the place.
label String Free-form label associated with the place.
phone String Primary phone number for the place.
parentId String Identifier of the parent place in the hierarchy.
tags String Tags applied to the place for categorization/search.
isWheelChairAccessible Bool Indicates whether the place is wheelchair accessible.
address_street String Street portion of the place address.
address_city String City portion of the place address.
address_state String State or province portion of the place address.
address_postalCode String Postal or ZIP code of the place address.
address_countryOrRegion String Country or region portion of the place address.
geoCoordinates_accuracy Float Accuracy (in meters) of the geocoordinate reading.
geoCoordinates_altitude Float Altitude coordinate for the place.
geoCoordinates_altitudeAccuracy Float Accuracy of the altitude value.
geoCoordinates_latitude Float Latitude coordinate for the place.
geoCoordinates_longitude Float Longitude coordinate for the place.

CData Python Connector for Microsoft Office 365

Plans

Displays task plan data from Microsoft Planner, including plan names, owners, and associated group IDs.

Table Specific Information

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 Creating an Entra ID (Azure AD) Application for more details.

Select

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)

Columns

Name Type References Description
container_containerId String Identifier of the container that holds the plan, typically referencing a Microsoft 365 Group or Team.
container_type String Type of container where the plan is stored, such as group or roster.
container_url String URL link to the container that holds the plan, such as the associated Group or Team.
createdBy_application_displayName String Display name of the application that created the plan.
createdBy_application_id String Unique identifier of the application that created the plan.
createdDateTime Datetime Timestamp indicating when the plan was created.
owner String Identifier of the user or entity that owns the plan.
title String Title or name of the plan as displayed in Microsoft Planner.
GroupId String Identifier of the Microsoft 365 Group associated with the plan.
Id [KEY] String Unique identifier of the plan.

CData Python Connector for Microsoft Office 365

Rooms

Lists room place resources and room-specific device/capacity metadata from Microsoft 365.

Columns

Name Type References Description
id [KEY] String Unique identifier for the room resource.
geoCoordinates_accuracy String Accuracy (in meters) of the geocoordinate reading.
geoCoordinates_altitude String Altitude coordinate for the room.
geoCoordinates_altitudeAccuracy String Accuracy of the altitude value.
geoCoordinates_latitude String Latitude coordinate for the room.
geoCoordinates_longitude String Longitude coordinate for the room.
audioDeviceName String Name of the room's configured audio device.
bookingType String Booking policy/type configured for the room mailbox.
building String Building name associated with the room.
capacity Int Maximum number of people the room can accommodate.
displayDeviceName String Name of the display device installed in the room.
emailAddress String SMTP email address for the room mailbox.
floorLabel String Text label for the floor where the room is located.
floorNumber Int Numeric floor number for the room location.
nickname String Nickname/alias assigned to the room.
placeId String Identifier of the backing place resource for this room.
teamsEnabledState String Microsoft Teams enablement state for the room.
videoDeviceName String Name of the room's configured video device.
PlaceObjectType [KEY] String Type discriminator for the place object returned by Microsoft Graph.
displayName String Display name of the room.
label String Free-form label associated with the room.
phone String Primary phone number for the room.
parentId String Identifier of the parent place in the hierarchy.
tags String Tags applied to the room for categorization/search.
isWheelChairAccessible Bool Indicates whether the room is wheelchair accessible.
address_street String Street portion of the room address.
address_city String City portion of the room address.
address_state String State or province portion of the room address.
address_postalCode String Postal or ZIP code of the room address.
address_countryOrRegion String Country or region portion of the room address.

CData Python Connector for Microsoft Office 365

Workspaces

Lists workspace place resources and workspace-specific capacity/device metadata.

Columns

Name Type References Description
id [KEY] String Unique identifier for the workspace resource.
geoCoordinates_accuracy String Accuracy (in meters) of the geocoordinate reading.
geoCoordinates_altitude String Altitude coordinate for the workspace.
geoCoordinates_altitudeAccuracy String Accuracy of the altitude value.
geoCoordinates_latitude String Latitude coordinate for the workspace.
geoCoordinates_longitude String Longitude coordinate for the workspace.
capacity Int Maximum number of occupants supported by the workspace.
displayDeviceName String Name of the workspace display device, if configured.
emailAddress String SMTP email address associated with the workspace.
nickname String Nickname/alias assigned to the workspace.
placeId String Identifier of the backing place resource for this workspace.
PlaceObjectType [KEY] String Type discriminator for the place object returned by Microsoft Graph.
displayName String Display name of the workspace.
label String Free-form label associated with the workspace.
phone String Primary phone number for the workspace.
parentId String Identifier of the parent place in the hierarchy.
tags String Tags applied to the workspace for categorization/search.
isWheelChairAccessible Bool Indicates whether the workspace is wheelchair accessible.
address_street String Street portion of the workspace address.
address_city String City portion of the workspace address.
address_state String State or province portion of the workspace address.
address_postalCode String Postal or ZIP code of the workspace address.
address_countryOrRegion String Country or region portion of the workspace address.

CData Python Connector for Microsoft Office 365

Stored Procedures

Stored procedures are function-like interfaces that extend the functionality of the connector beyond simple SELECT/INSERT/UPDATE/DELETE operations with Microsoft Office 365.

Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from Microsoft Office 365, along with an indication of whether the procedure succeeded or failed.

CData Python Connector for Microsoft Office 365 Stored Procedures

Name Description
AddAttachments Adds one or more attachments to an existing email message based on message ID.
AssignLicense Assigns or removes Microsoft 365 subscriptions for a user and enables or disables specific service plans within those subscriptions.
CancelEvent Cancels an existing calendar event and updates the event status across invitees.
CopilotRetrieval Retrieves relevant text extracts from SharePoint, OneDrive, and Microsoft 365 Copilot connectors content using the Microsoft 365 Copilot Retrieval API. Returns one row per text extract, with parent document metadata repeated on each row.
CreateFolder Creates a new folder or updates the contents of an existing file in OneDrive or SharePoint.
CreateForward Creates a draft of a forward that sends an existing email message to specified recipients.
CreateReply Creates a reply draft to an existing email message, preserving the message thread and including quoted content where applicable.
CreateSchema Generates and saves a schema definition file for a specified Office365 table or view.
DeleteAttachment Removes a specified attachment from an email or message item, supporting cleanup and content modification operations.
DismissEventReminder Programmatically dismisses the reminder for a calendar event, simulating the user action of closing the reminder notification.
DownloadAttachments Downloads one or more attachments from a specified email message.
DownloadEmail Downloads the full contents of an email message, including metadata and body content.
DownloadFile Downloads a specified file from OneDrive or SharePoint.
FetchAdditionalUserFields Retrieves additional Tier 1, Tier 2, and Tier 3 user fields for enhanced profile data.
ForwardEvent Forwards a calendar event invitation to one or more recipients.
ForwardMail Forwards an existing email message to specified recipients.
GetAdminConsentURL Returns a URL to initiate the admin consent process for granting application access using custom OAuth credentials.
GetOAuthAccessToken Gets an authentication token from Office365.
GetOAuthAuthorizationURL Gets the authorization URL that must be opened separately by the user to grant access to your application. Only needed when developing Web apps. You will request the auth token from this URL.
MoveMail Moves an email message to a specified folder within a user's mailbox.
RefreshOAuthAccessToken Refreshes the OAuth access token used for authentication with various Office 365 services.
ReplyToMessage Sends a reply to an existing email message, preserving the message thread and including quoted content where applicable.
RespondToEvent Submits a response (accept, decline, tentative) to a calendar event invitation, updating the attendee's participation status.
SendMail Sends an email message from the authenticated user's mailbox with optional attachments.
SnoozeEventReminder Postpones a calendar event reminder for a defined duration, emulating the 'Snooze' functionality in email/calendar clients.
UploadFile Uploads a new file or replaces the content of an existing file in OneDrive or SharePoint.

CData Python Connector for Microsoft Office 365

AddAttachments

Adds one or more attachments to an existing email message based on message ID.

Input

Name Type Required Description
Id String True Identifier of the message or event to which the attachment is added.
DestinationType String True Type of destination object for the attachment. Allowed values are: Message or Event.
FileName String True File name of the attachment to be added.
LocalFile String False Path to the local file that contains the content to be attached.
ContentBytes String False Attachment content encoded as a Base64 byte array. Used if LocalFile is not specified.

Result Set Columns

Name Type Description
ContentBytes String Indicates whether the attachment content was successfully added to the target message or event.
Id String Identifier of the newly added attachment.
LastModifiedDateTime Datetime Timestamp indicating the last time the added attachment was modified.
Isinline Boolean Indicates whether the attachment was added as an inline element within the message or event body.
Name String Name of the attachment that was added.
Contenttype String The content type of the attachment.
Size Int Size of the added attachment in bytes.

CData Python Connector for Microsoft Office 365

AssignLicense

Assigns or removes Microsoft 365 subscriptions for a user and enables or disables specific service plans within those subscriptions.

Input

Name Type Required Description
UserID String False Identifier of the user to whom the license is assigned. Leave blank to assign the license to the currently authenticated user.
UserPrincipalName String False User principal name (UPN) of the user to whom the license is assigned. Leave blank to assign the license to the currently authenticated user.
AddLicenseSkuId String False Globally Unique Identifier (GUID) of the license SKU to be added to the user.
DisabledPlans String False Comma-separated list of plan identifiers to disable within the license, such as 6fd2c87f-b296-42f0-b197-1e91e994b900, 1f2f344a-700d-42c9-9427-cf6a4d3fdf28.
RemoveLicenses String False Comma-separated list of license GUIDs to remove from the user, such as 76b8cfd1-3de8-4a73-9fb6-dc0c50e2b2f3, b2307a39-3b5c-44db-96f5-1a045c007cb9.

Result Set Columns

Name Type Description
Status String Indicates whether the stored procedure completed successfully or returned an error.

CData Python Connector for Microsoft Office 365

CancelEvent

Cancels an existing calendar event and updates the event status across invitees.

Input

Name Type Required Description
EventId String True Identifier of the calendar event to be canceled.
UserId String False Identifier of the user who owns the calendar event.
UserPrincipalName String False User principal name (UPN) of the calendar owner. Leave blank to use the currently authenticated user.
Comment String False Optional comment to include with the cancellation notice. Can be an empty string.

Result Set Columns

Name Type Description
Status String Indicates whether the stored procedure executed successfully or returned an error.

CData Python Connector for Microsoft Office 365

CopilotRetrieval

Retrieves relevant text extracts from SharePoint, OneDrive, and Microsoft 365 Copilot connectors content using the Microsoft 365 Copilot Retrieval API. Returns one row per text extract, with parent document metadata repeated on each row.

Stored Procedure Specific Information

Select

In order to execute this stored procedure, you must create a custom OAuth app with the permissions Files.Read.All and Sites.Read.All at minimum, and optionally also ExternalItem.Read.All. These must be delegated permissions on a work or school account. Additionally, your account must have the Microsoft 365 Copilot license.

Sample statements:

EXEC CopilotRetrieval QueryString = 'How do you set up a corporate VPN?', DataSource = 'sharePoint'

EXEC CopilotRetrieval QueryString = 'How do you set up a corporate VPN?', DataSource = 'oneDriveBusiness', ResourceMetadata = 'title', MaximumNumberOfResults = '10'

Input

Name Type Required Description
QueryString String True Natural language query string used to retrieve relevant text extracts. Limited to 1,500 characters. Should be a single sentence without spelling errors in context-rich keywords.
DataSource String True Indicates whether extracts should be retrieved from SharePoint (sharePoint), OneDrive (oneDriveBusiness), or Copilot connectors (externalItem).

The allowed values are sharePoint, oneDriveBusiness, externalItem.

FilterExpression String False Keyword Query Language (KQL) expression with queryable SharePoint, OneDrive, or Copilot connectors properties to scope the retrieval before the query runs. Supported SharePoint and OneDrive properties include: Author, FileExtension, Filename, FileType, InformationProtectionLabelId, LastModifiedTime, ModifiedBy, Path, SiteID, and Title. For Copilot connectors content, any property marked as queryable in the connector schema may be used. By default, no scoping is applied.
ResourceMetadata String False Comma-separated list of metadata field names to return for each item in the response. Only retrievable metadata properties can be included. Common values include title and author. By default, no metadata is returned.
MaximumNumberOfResults String False The maximum number of documents whose extracts are returned in the response. Must be between 1 and 25. Defaults to 25. Note that each document can have multiple extracts, so the number of rows in the output may be more than this value.

The default value is 25.

ConnectionIds String False Comma-separated list of Copilot connector connection IDs to restrict retrieval to specific connections. Only applicable when DataSource is externalItem.

Result Set Columns

Name Type Description
Text String The text extract retrieved from the document.
RelevanceScore Double The cosine similarity between the text extract and the QueryString, normalized to the 0-1 range. May be empty if the API does not return a score for this extract.
WebUrl String The URL of the document from which the extract was retrieved.
ResourceType String The resource type of the source document. Possible values include site, list, listItem, externalItem, drive, and driveItem.
ResourceMetadata String JSON object containing the requested metadata fields for the source document, such as title and author. Empty if no metadata was requested or none was applicable.
SensitivityLabel_SensitivityLabelId String The unique identifier of the sensitivity label applied to the source document.
SensitivityLabel_DisplayName String The display name of the sensitivity label applied to the source document.
SensitivityLabel_Tooltip String The tooltip text describing the sensitivity label applied to the source document.
SensitivityLabel_Priority Int The priority of the sensitivity label applied to the source document.
SensitivityLabel_Color String The color associated with the sensitivity label applied to the source document.

CData Python Connector for Microsoft Office 365

CreateFolder

Creates a new folder or updates the contents of an existing file in OneDrive or SharePoint.

Input

Name Type Required Description
FolderName String True Name of the new folder to be created.
ParentId String False Identifier of the parent folder in which the new folder is created.

Result Set Columns

Name Type Description
Id String Identifier of the folder that was successfully created.

CData Python Connector for Microsoft Office 365

CreateForward

Creates a draft of a forward that sends an existing email message to specified recipients.

Stored Procedure-Specific Information

To forward to a single recipient, enter:
    EXEC CreateForward MessageId = 'your_message_id_here', ToRecipients = 'recipient@example.com'
To forward to multiple recipients, enter:
	EXEC CreateForward MessageId = 'your_message_id_here', ToRecipients = 'user1@example.com;user2@example.com', Comment = 'FYI'

Input

Name Type Required Description
MessageId String True Identifier of the email message to be forwarded.
ToRecipients String True Semicolon-separated list of recipient email addresses, such as user1@example.com; user2@example.com.
Comment String False Optional comment or body content to include above the original message when forwarding.
UserId String False The identifier of the impersonated user on whose behalf the reply is being sent. Used in delegated access scenarios.

Result Set Columns

Name Type Description
Id String The ID of the Message that has been created as a draft.

CData Python Connector for Microsoft Office 365

CreateReply

Creates a reply draft to an existing email message, preserving the message thread and including quoted content where applicable.

Stored Procedure-Specific Information

To create a basic reply to the sender only, enter:
    EXEC CreateReply MessageId = 'your_message_id_here', Comment = 'FYI'
Set ToAll to true to create a reply-all draft addressed to all original recipients.
    EXEC CreateReply MessageId = 'your_message_id_here', Comment = 'FYI', ToAll = 'true'

Input

Name Type Required Description
MessageId String True The unique identifier of the original email message being replied to. This Id is required to retrieve the correct message from the mailbox.
Comment String False The body content of the reply message. This comment appears above the original message in the reply thread.
ToAll Boolean False Specifies whether the reply should be sent to all original recipients (true) or only to the sender (false).

The default value is false.

UserId String False The identifier of the impersonated user on whose behalf the reply is being sent. Used in delegated access scenarios.

Result Set Columns

Name Type Description
Id String The ID of the Message that has been created as a draft.

CData Python Connector for Microsoft Office 365

CreateSchema

Generates and saves a schema definition file for a specified Office365 table or view.

CreateSchema

Creates a local schema file (.rsd) from an existing table or view in the data model.

The schema file is created in the directory set in the Location connection property when this procedure is executed. You can edit the file to include or exclude columns, rename columns, or adjust column datatypes.

The connector checks the Location to determine if the names of any .rsd files match a table or view in the data model. If there is a duplicate, the schema file will take precedence over the default instance of this table in the data model. If a schema file is present in Location that does not match an existing table or view, a new table or view entry is added to the data model of the connector.

Input

Name Type Required Description
TableName String True Name of the table or view for which the schema is generated.
FileName String False Full file path and name where the generated schema is saved. For example: 'C:\\Users\\User\\Desktop\\SmartSheet\\sheet.rsd'.

Result Set Columns

Name Type Description
Result String Indicates whether the schema creation was successful or failed.
FileData String Base64-encoded content of the generated schema. Returned only if FileName and FileStream are not specified.

CData Python Connector for Microsoft Office 365

DeleteAttachment

Removes a specified attachment from an email or message item, supporting cleanup and content modification operations.

Input

Name Type Required Description
MessageId String False The unique identifier of the email message from which an attachment will be deleted. Required to locate the correct message item.
EventId String False The unique identifier of the email message from which an attachment will be deleted. Required to locate the correct message item.
AttachmentID String True The unique identifier of the specific attachment to delete from the message. This must correspond to an existing attachment on the message.
UserId String False The identifier of the impersonated user under whose context the delete operation will be executed. Used in scenarios where delegated access is required.

Result Set Columns

Name Type Description
Success String Indicates whether the attachment deletion operation completed successfully. Returns true if the attachment was removed; false if an error occurred.

CData Python Connector for Microsoft Office 365

DismissEventReminder

Programmatically dismisses the reminder for a calendar event, simulating the user action of closing the reminder notification.

Input

Name Type Required Description
EventId String True The unique identifier of the calendar event for which the reminder is being dismissed. This ID is required to target the correct event.
UserId String False The identifier of the user being impersonated to perform the dismissal action. Used in delegated or service account scenarios to act on behalf of the user.

Result Set Columns

Name Type Description
Success Boolean Indicates whether the dismissal request completed successfully. A value of true confirms the reminder was dismissed without error.

CData Python Connector for Microsoft Office 365

DownloadAttachments

Downloads one or more attachments from a specified email message.

Input

Name Type Required Description
MessageId String True Identifier of the email message from which attachments should be downloaded.
UserId String False Identifier of the user account. This is required only if the authenticated user is an administrator performing actions on behalf of another user.
AttachmentId String False Identifier of a specific attachment to download. If not specified, all attachments from the message are returned.
DownloadTo String False Destination path where the attachments are saved. If not specified, the content bytes are returned directly. Required when MessageId is provided.
Encoding String False Specifies the encoding type used for the FileData input, such as Base64.

The allowed values are NONE, BASE64.

The default value is BASE64.

Result Set Columns

Name Type Description
Id String Identifier of the downloaded attachment.
Name String File name of the downloaded attachment.
ContentBytes String Raw content bytes of the downloaded attachment.
LastmodifiedDatetime String Timestamp indicating when the attachment was last modified.
ContentType String The content type of the attachment. If DownloadTo is specified, this value is null.
FileData String Encoded file content returned as output. Used only if DownloadTo and FileStream are not specified.

CData Python Connector for Microsoft Office 365

DownloadEmail

Downloads the full contents of an email message, including metadata and body content.

Input

Name Type Required Description
MessageId String True Identifier of the email message to be downloaded.
DownloadTo String False Destination file path where the downloaded email is saved. If not provided, the email content is returned as output.
Encoding String False Specifies the encoding format used for the FileData input, such as Base64.

The allowed values are NONE, BASE64.

The default value is BASE64.

Result Set Columns

Name Type Description
Status String Indicates whether the stored procedure completed successfully or returned an error.
FileData String Encoded content of the downloaded email, returned when DownloadTo and FileStream are not specified.

CData Python Connector for Microsoft Office 365

DownloadFile

Downloads a specified file from OneDrive or SharePoint.

Input

Name Type Required Description
FileId String True Identifier of the file to be downloaded.
DownloadTo String False Full path where the downloaded file is saved. If not specified, the file content is returned as output.
Encoding String False Encoding format used for the FileData input, such as Base64.

The allowed values are NONE, BASE64.

The default value is BASE64.

Result Set Columns

Name Type Description
Status String Indicates whether the stored procedure executed successfully or failed.
FileData String Encoded content of the downloaded file. Returned only if DownloadTo and FileStream are not specified.

CData Python Connector for Microsoft Office 365

FetchAdditionalUserFields

Retrieves additional Tier 1, Tier 2, and Tier 3 user fields for enhanced profile data.

Input

Name Type Required Description
UserId String True Unique identifier of the user whose additional fields are being fetched.
IncludeFields String False Comma-separated list of user fields to include in the result, such as displayName, mail, jobTitle.
ExcludeFields String False Comma-separated list of user fields to exclude from the result, such as mobilePhone, officeLocation.

Result Set Columns

Name Type Description
* String Query results including all selected fields from the user object, based on include and exclude parameters.

CData Python Connector for Microsoft Office 365

ForwardEvent

Forwards a calendar event invitation to one or more recipients.

Input

Name Type Required Description
EventId String True Identifier of the calendar event to be forwarded.
ToRecipients String True Semicolon-separated list of recipient email addresses to whom the event is forwarded, such as user1@example.com; user2@example.com.
UserId String False Identifier of the user who is forwarding the event.
UserPrincipalName String False User principal name (UPN) of the user forwarding the event. Leave blank to use the currently authenticated user.
Comment String False Optional message or comment to include with the forwarded event. Can be an empty string.

Result Set Columns

Name Type Description
Status String Indicates whether the stored procedure completed successfully or returned an error.

CData Python Connector for Microsoft Office 365

ForwardMail

Forwards an existing email message to specified recipients.

Input

Name Type Required Description
MessageId String True Identifier of the email message to be forwarded.
ToRecipients String True Semicolon-separated list of recipient email addresses, such as user1@example.com; user2@example.com.
Comment String False Optional comment or body content to include above the original message when forwarding.

Result Set Columns

Name Type Description
Status String Indicates whether the stored procedure completed successfully or returned an error.

CData Python Connector for Microsoft Office 365

GetAdminConsentURL

Returns a URL to initiate the admin consent process for granting application access using custom OAuth credentials.

Input

Name Type Required Description
CallbackUrl String False URL to which the user is redirected after granting admin consent. Must match the Reply URL configured in the Azure Active Directory app registration.
State String False Opaque value used to maintain state between the request and the callback. Returned unchanged in the response for validation.
Scope String False Space-separated list of permissions to request from the admin, such as User.Read Mail.Read Calendars.ReadWrite.

The default value is 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.

Result Set Columns

Name Type Description
URL String Authorization URL that should be opened in a browser to initiate admin consent and retrieve the verifier token.

CData Python Connector for Microsoft Office 365

GetOAuthAccessToken

Gets an authentication token from Office365.

Input

Name Type Required Description
AuthMode String False The type of authentication mode to use. Select App for getting authentication tokens via a desktop app. Select Web for getting authentication tokens via a Web app.

The allowed values are APP, WEB.

The default value is APP.

CallbackUrl String False The URL the user will be redirected to after authorizing your application. This value must match the Reply URL you have specified in the Azure AD app settings.
Verifier String False The verifier returned from Azure AD after the user has authorized your app to have access to their data. This value will be returned as a parameter to the callback URL.
State String False An arbitrary string of your choosing that is returned to your app; a successful roundtrip of this string helps ensure that your app initiated the request.
Scope String False A space-separated list of permissions to request from the user when OAuthGrantType='CODE'. Please check the Microsoft Graph API for a list of available permissions. When OAuthGrantType='CLIENT', a scope of 'https://graph.microsoft.com/.default' is used. '/.default' picks up whatever permissions your app already has.
Prompt String False Defaults to 'select_account' which prompts the user to select account while authenticating. Set to 'None', for no prompt, 'login' to force user to enter their credentials or 'consent' to trigger the OAuth consent dialog after the user signs in, asking the user to grant permissions to the app.

Result Set Columns

Name Type Description
OAuthAccessToken String The access token used for communication with Office365.
ExpiresIn String The remaining lifetime on the access token. A -1 denotes that it will not expire.
OAuthRefreshToken String Refresh token to renew the access token.

CData Python Connector for Microsoft Office 365

GetOAuthAuthorizationURL

Gets the authorization URL that must be opened separately by the user to grant access to your application. Only needed when developing Web apps. You will request the auth token from this URL.

Input

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 user when OAuthGrantType='CODE'. Please check the Microsoft Graph API for a list of available permissions. When OAuthGrantType='CLIENT', a scope of 'https://graph.microsoft.com/.default' is used. '/.default' picks up whatever permissions your app already has.
Prompt String False Defaults to 'select_account' which prompts the user to select account while authenticating. Set to 'None' for no prompt, 'login' to force user to enter their credentials or 'consent' to trigger the OAuth consent dialog after the user signs in, asking the user to grant permissions to the app.

Result Set Columns

Name Type Description
URL String The authorization URL, entered into a Web browser to obtain the verifier token and authorize your app.

CData Python Connector for Microsoft Office 365

MoveMail

Moves an email message to a specified folder within a user's mailbox.

Input

Name Type Required Description
MessageId String True Identifier of the email message that is to be moved.
DestinationId String True Identifier of the destination folder where the email message should be moved.

Result Set Columns

Name Type Description
Id String Identifier of the email message after it has been successfully moved.

CData Python Connector for Microsoft Office 365

RefreshOAuthAccessToken

Refreshes the OAuth access token used for authentication with various Office 365 services.

Input

Name Type Required Description
OAuthRefreshToken String True The refresh token returned from the original authorization code exchange.

Result Set Columns

Name Type Description
OAuthAccessToken String The authentication token returned from Azure AD. This can be used in subsequent calls to other operations for this particular service.
OAuthRefreshToken String A token that may be used to obtain a new access token.
ExpiresIn String The remaining lifetime on the access token.

CData Python Connector for Microsoft Office 365

ReplyToMessage

Sends a reply to an existing email message, preserving the message thread and including quoted content where applicable.

Input

Name Type Required Description
MessageId String True The unique identifier of the original email message being replied to. This ID is required to retrieve the correct message from the mailbox.
Comment String False The body content of the reply message. This comment will appear above the original message in the reply thread.
ToAll Boolean False Specifies whether the reply should be sent to all original recipients (true) or only to the sender (false).

The default value is false.

UserId String False The identifier of the impersonated user on whose behalf the reply is being sent. Used in delegated access scenarios.

Result Set Columns

Name Type Description
Success Boolean Indicates whether the reply operation was completed successfully. A value of true confirms the message was sent; false indicates failure.

CData Python Connector for Microsoft Office 365

RespondToEvent

Submits a response (accept, decline, tentative) to a calendar event invitation, updating the attendee's participation status.

Input

Name Type Required Description
EventId String True The unique identifier of the calendar event to which the user is responding. This ID is used to locate the specific event in the user's calendar.
UserId String False The identifier of the impersonated user performing the operation. Required when actions are taken on behalf of another user.
ResponseType String True Indicates the type of response to send for the event invitation. Valid values are: Accept, Decline, and TentativelyAccept. This determines the participant's response status for the event.
SendResponse String False Boolean value that specifies whether a response should be sent to the event organizer. If true, a response is sent; if false, the response is not communicated. Optional. Default is true.

The default value is true.

Comment String False An optional message or note to include in the response. This text is typically visible to the event organizer.

Result Set Columns

Name Type Description
Success Boolean Indicates whether the operation to respond to the event was successful. Returns true if the response was processed correctly, false otherwise.

CData Python Connector for Microsoft Office 365

SendMail

Sends an email message from the authenticated user's mailbox with optional attachments.

Input

Name Type Required Description
Id String False Optional identifier of the draft email message to send. If not provided, a new message is created from the input fields.
Subject String False Subject line of the email.
Content String False Body content of the email message.
Attachments String False List of attachments in the format: filename1, filecontent1; filename2, filecontent2. Each filecontent can be Base64-encoded data or a file path prefixed with @.
FileName String False Name of the email attachment when sending a file manually.
LocalFile String False Path to the local file that contains the attachment content.
ContentBytes String False Content of the attachment encoded in Base64 format.
ToRecipients String False Semicolon-separated list of recipient email addresses for the To field, such as person1@example.com; person2@example.com.
CCRecipients String False Semicolon-separated list of recipient email addresses for the CC field.
BccRecipients String False Semicolon-separated list of recipient email addresses for the Bcc field.
SenderEmail String False Email address on whose behalf the message should be sent. Use this to send on behalf of another user.
FromEmail String False Email address from which the message is sent. Use this to send from another user's account.
ContentType String False Format of the email body content, such as text or HTML.

The allowed values are text, html.

The default value is text.

SingleValueExtendedProperties String False Text in the format of a json array containing json objects with an id and a value field. Allows a user to pass property values directly to access behavior like scheduling the sending of an email.

Result Set Columns

Name Type Description
Status String Indicates whether the stored procedure executed successfully or returned an error.

CData Python Connector for Microsoft Office 365

SnoozeEventReminder

Postpones a calendar event reminder for a defined duration, emulating the 'Snooze' functionality in email/calendar clients.

Input

Name Type Required Description
EventId String True The unique identifier of the calendar event for which the reminder is being postponed. This is required to locate the specific event in the user's calendar.
DateTime String False The new date and time to which the event reminder should be snoozed. This value determines when the reminder will next appear.
TimeZone String False The time zone associated with the new reminder date and time. Ensures the snooze is scheduled accurately relative to the user's local time.
UserId String False The identifier of the impersonated user performing the operation. Required when actions are taken on behalf of another user.

Result Set Columns

Name Type Description
Success Boolean Indicates whether the snooze reminder request was successful. Returns true if the operation completed without errors.

CData Python Connector for Microsoft Office 365

UploadFile

Uploads a new file or replaces the content of an existing file in OneDrive or SharePoint.

Input

Name Type Required Description
FileName String False Name of the file to upload content to. Provide this only if uploading to an existing file.
ParentId String True Identifier of the folder where the uploaded file should be placed.
Content String False Raw content to upload as the file's contents.
LocalFile String False Path to the local file whose content is uploaded.

Result Set Columns

Name Type Description
Id String Identifier of the file that was uploaded.
* String Complete set of output fields returned after the file upload operation, including metadata.

CData Python Connector for Microsoft Office 365

System Tables

You can query the system tables described in this section to access schema information, information on data source functionality, and batch operation statistics.

Schema Tables

The following tables return database metadata for Microsoft Office 365:

Data Source Tables

The following tables return information about how to connect to and query the data source:

  • sys_connection_props: Returns information on the available connection properties.
  • sys_sqlinfo: Describes the SELECT queries that the connector can offload to the data source.

Query Information Tables

The following table returns query statistics for data modification queries

  • sys_identity: Returns information about batch operations or single updates.

CData Python Connector for Microsoft Office 365

sys_catalogs

Lists the available databases.

The following query retrieves all databases determined by the connection string:

SELECT * FROM sys_catalogs

Columns

Name Type Description
CatalogName String The database name.

CData Python Connector for Microsoft Office 365

sys_schemas

Lists the available schemas.

The following query retrieves all available schemas:

          SELECT * FROM sys_schemas
          

Columns

Name Type Description
CatalogName String The database name.
SchemaName String The schema name.

CData Python Connector for Microsoft Office 365

sys_tables

Lists the available tables.

The following query retrieves the available tables and views:

          SELECT * FROM sys_tables
          

Columns

Name Type Description
CatalogName String The database containing the table or view.
SchemaName String The schema containing the table or view.
TableName String The name of the table or view.
TableType String The table type (table or view).
Description String A description of the table or view.
IsUpdateable Boolean Whether the table can be updated.
IsInsertable Boolean Whether the table can be inserted into.
IsDeleteable Boolean Whether rows can be deleted from the table.

CData Python Connector for Microsoft Office 365

sys_tablecolumns

Describes the columns of the available tables and views.

The following query returns the columns and data types for the Events table:

SELECT ColumnName, DataTypeName FROM sys_tablecolumns WHERE TableName = 'Events' 

Columns

Name Type Description
CatalogName String The name of the database containing the table or view.
SchemaName String The schema containing the table or view.
TableName String The name of the table or view containing the column.
ColumnName String The column name.
DataTypeName String The data type name.
DataType Int32 An integer indicating the data type. This value is determined at run time based on the environment.
Length Int32 The storage size of the column.
DisplaySize Int32 The designated column's normal maximum width in characters.
NumericPrecision Int32 The maximum number of digits in numeric data. The column length in characters for character and date-time data.
NumericScale Int32 The column scale or number of digits to the right of the decimal point.
IsNullable Boolean Whether the column can contain null.
Description String A brief description of the column.
Ordinal Int32 The sequence number of the column.
IsAutoIncrement String Whether the column value is assigned in fixed increments.
IsGeneratedColumn String Whether the column is generated.
IsHidden Boolean Whether the column is hidden.
IsArray Boolean Whether the column is an array.
IsReadOnly Boolean Whether the column is read-only.
IsKey Boolean Indicates whether a field returned from sys_tablecolumns is the primary key of the table.
ColumnType String The role or classification of the column in the schema. Possible values include SYSTEM, LINKEDCOLUMN, NAVIGATIONKEY, REFERENCECOLUMN, and NAVIGATIONPARENTCOLUMN.
ColumnCapabilities Int32 A bit mask denoting the column's write capabilities. The value is the sum of the following: 1 if the column is required for INSERTs, 2 if the column is allowed for INSERTs, and 4 if the column is allowed for UPDATEs. A value of 0 indicates that the write capabilities of the column are unknown or that the column is read-only.

CData Python Connector for Microsoft Office 365

sys_procedures

Lists the available stored procedures.

The following query retrieves the available stored procedures:

          SELECT * FROM sys_procedures
          

Columns

Name Type Description
CatalogName String The database containing the stored procedure.
SchemaName String The schema containing the stored procedure.
ProcedureName String The name of the stored procedure.
Description String A description of the stored procedure.
ProcedureType String The type of the procedure, such as PROCEDURE or FUNCTION.

CData Python Connector for Microsoft Office 365

sys_procedureparameters

Describes stored procedure parameters.

The following query returns information about all of the input parameters for the SendMail stored procedure:

SELECT * FROM sys_procedureparameters WHERE ProcedureName = 'SendMail' AND Direction = 1 OR Direction = 2

To include result set columns in addition to the parameters, set the IncludeResultColumns pseudo column to True:

SELECT * FROM sys_procedureparameters WHERE ProcedureName = 'SendMail' AND IncludeResultColumns='True'

Columns

Name Type Description
CatalogName String The name of the database containing the stored procedure.
SchemaName String The name of the schema containing the stored procedure.
ProcedureName String The name of the stored procedure containing the parameter.
ColumnName String The name of the stored procedure parameter.
Direction Int32 An integer corresponding to the type of the parameter: input (1), input/output (2), or output(4). input/output type parameters can be both input and output parameters.
DataType Int32 An integer indicating the data type. This value is determined at run time based on the environment.
DataTypeName String The name of the data type.
NumericPrecision Int32 The maximum precision for numeric data. The column length in characters for character and date-time data.
Length Int32 The number of characters allowed for character data. The number of digits allowed for numeric data.
NumericScale Int32 The number of digits to the right of the decimal point in numeric data.
IsNullable Boolean Whether the parameter can contain null.
IsRequired Boolean Whether the parameter is required for execution of the procedure.
IsArray Boolean Whether the parameter is an array.
Description String The description of the parameter.
Ordinal Int32 The index of the parameter.
Values String The values you can set in this parameter are limited to those shown in this column. Possible values are comma-separated.
SupportsStreams Boolean Whether the parameter represents a file that you can pass as either a file path or a stream.
IsPath Boolean Whether the parameter is a target path for a schema creation operation.
Default String The value used for this parameter when no value is specified.
SpecificName String A label that, when multiple stored procedures have the same name, uniquely identifies each identically-named stored procedure. If there's only one procedure with a given name, its name is simply reflected here.
IsCDataProvided Boolean Whether the procedure is added/implemented by CData, as opposed to being a native Microsoft Office 365 procedure.

Pseudo-Columns

Name Type Description
IncludeResultColumns Boolean Whether the output should include columns from the result set in addition to parameters. Defaults to False.

CData Python Connector for Microsoft Office 365

sys_keycolumns

Describes the primary and foreign keys.

The following query retrieves the primary key for the Events table:

         SELECT * FROM sys_keycolumns WHERE IsKey='True' AND TableName='Events' 
          

Columns

Name Type Description
CatalogName String The name of the database containing the key.
SchemaName String The name of the schema containing the key.
TableName String The name of the table containing the key.
ColumnName String The name of the key column.
IsKey Boolean Whether the column is a primary key in the table referenced in the TableName field.
IsForeignKey Boolean Whether the column is a foreign key referenced in the TableName field.
PrimaryKeyName String The name of the primary key.
ForeignKeyName String The name of the foreign key.
ReferencedCatalogName String The database containing the primary key.
ReferencedSchemaName String The schema containing the primary key.
ReferencedTableName String The table containing the primary key.
ReferencedColumnName String The column name of the primary key.

CData Python Connector for Microsoft Office 365

sys_foreignkeys

Describes the foreign keys.

The following query retrieves all foreign keys which refer to other tables:

         SELECT * FROM sys_foreignkeys WHERE ForeignKeyType = 'FOREIGNKEY_TYPE_IMPORT'
          

Columns

Name Type Description
CatalogName String The name of the database containing the key.
SchemaName String The name of the schema containing the key.
TableName String The name of the table containing the key.
ColumnName String The name of the key column.
PrimaryKeyName String The name of the primary key.
ForeignKeyName String The name of the foreign key.
ReferencedCatalogName String The database containing the primary key.
ReferencedSchemaName String The schema containing the primary key.
ReferencedTableName String The table containing the primary key.
ReferencedColumnName String The column name of the primary key.
ForeignKeyType String Designates whether the foreign key is an import (points to other tables) or export (referenced from other tables) key.

CData Python Connector for Microsoft Office 365

sys_primarykeys

Describes the primary keys.

The following query retrieves the primary keys from all tables and views:

         SELECT * FROM sys_primarykeys
          

Columns

Name Type Description
CatalogName String The name of the database containing the key.
SchemaName String The name of the schema containing the key.
TableName String The name of the table containing the key.
ColumnName String The name of the key column.
KeySeq String The sequence number of the primary key.
KeyName String The name of the primary key.

CData Python Connector for Microsoft Office 365

sys_indexes

Describes the available indexes. By filtering on indexes, you can write more selective queries with faster query response times.

The following query retrieves all indexes that are not primary keys:

          SELECT * FROM sys_indexes WHERE IsPrimary='false'
          

Columns

Name Type Description
CatalogName String The name of the database containing the index.
SchemaName String The name of the schema containing the index.
TableName String The name of the table containing the index.
IndexName String The index name.
ColumnName String The name of the column associated with the index.
IsUnique Boolean True if the index is unique. False otherwise.
IsPrimary Boolean True if the index is a primary key. False otherwise.
Type Int16 An integer value corresponding to the index type: statistic (0), clustered (1), hashed (2), or other (3).
SortOrder String The sort order: A for ascending or D for descending.
OrdinalPosition Int16 The sequence number of the column in the index.

CData Python Connector for Microsoft Office 365

sys_connection_props

Returns information on the available connection properties and those set in the connection string.

The following query retrieves all connection properties that have been set in the connection string or set through a default value:

SELECT * FROM sys_connection_props WHERE Value <> ''

Columns

Name Type Description
Name String The name of the connection property.
ShortDescription String A brief description.
Type String The data type of the connection property.
Default String The default value if one is not explicitly set.
Values String A comma-separated list of possible values. A validation error is thrown if another value is specified.
Value String The value you set or a preconfigured default.
Required Boolean Whether the property is required to connect.
Category String The category of the connection property.
IsSessionProperty String Whether the property is a session property, used to save information about the current connection.
Sensitivity String The sensitivity level of the property. This informs whether the property is obfuscated in logging and authentication forms.
PropertyName String A camel-cased truncated form of the connection property name.
Ordinal Int32 The index of the parameter.
CatOrdinal Int32 The index of the parameter category.
Hierarchy String Shows dependent properties associated that need to be set alongside this one.
Visible Boolean Informs whether the property is visible in the connection UI.
ETC String Various miscellaneous information about the property.

CData Python Connector for Microsoft Office 365

sys_sqlinfo

Describes the SELECT query processing that the connector can offload to the data source.

See SQL Compliance for SQL syntax details.

Discovering the Data Source's SELECT Capabilities

Below is an example data set of SQL capabilities. Some aspects of SELECT functionality are returned in a comma-separated list if supported; otherwise, the column contains NO.

NameDescriptionPossible Values
AGGREGATE_FUNCTIONSSupported aggregation functions.AVG, COUNT, MAX, MIN, SUM, DISTINCT
COUNTWhether COUNT function is supported.YES, NO
IDENTIFIER_QUOTE_OPEN_CHARThe opening character used to escape an identifier.[
IDENTIFIER_QUOTE_CLOSE_CHARThe closing character used to escape an identifier.]
SUPPORTED_OPERATORSA list of supported SQL operators.=, >, <, >=, <=, <>, !=, LIKE, NOT LIKE, IN, NOT IN, IS NULL, IS NOT NULL, AND, OR
GROUP_BYWhether GROUP BY is supported, and, if so, the degree of support.NO, NO_RELATION, EQUALS_SELECT, SQL_GB_COLLATE
OJ_CAPABILITIESThe supported varieties of outer joins supported.NO, LEFT, RIGHT, FULL, INNER, NOT_ORDERED, ALL_COMPARISON_OPS
OUTER_JOINSWhether outer joins are supported.YES, NO
SUBQUERIESWhether subqueries are supported, and, if so, the degree of support.NO, COMPARISON, EXISTS, IN, CORRELATED_SUBQUERIES, QUANTIFIED
STRING_FUNCTIONSSupported 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_FUNCTIONSSupported 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_FUNCTIONSSupported date/time 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_TABLESIndicates tables skipped during replication.
REPLICATION_TIMECHECK_COLUMNSA string array containing a list of columns which will be used to check for (in the given order) to use as a modified column during replication.
IDENTIFIER_PATTERNString value indicating what string is valid for an identifier.
SUPPORT_TRANSACTIONIndicates if the provider supports transactions such as commit and rollback.YES, NO
DIALECTIndicates the SQL dialect to use.
KEY_PROPERTIESIndicates the properties which identify the uniform database.
SUPPORTS_MULTIPLE_SCHEMASIndicates if multiple schemas may exist for the provider.YES, NO
SUPPORTS_MULTIPLE_CATALOGSIndicates if multiple catalogs may exist for the provider.YES, NO
DATASYNCVERSIONThe CData Data Sync version needed to access this driver.Standard, Starter, Professional, Enterprise
DATASYNCCATEGORYThe CData Data Sync category of this driver.Source, Destination, Cloud Destination
SUPPORTSENHANCEDSQLWhether enhanced SQL functionality beyond what is offered by the API is supported.TRUE, FALSE
SUPPORTS_BATCH_OPERATIONSWhether batch operations are supported.YES, NO
SQL_CAPAll supported SQL capabilities for this driver.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_OPTIONSA string value specifies the preferred cacheOptions.
ENABLE_EF_ADVANCED_QUERYIndicates if the driver directly supports advanced queries coming from Entity Framework. If not, queries will be handled client side.YES, NO
PSEUDO_COLUMNSA string array indicating the available pseudo columns.
MERGE_ALWAYSIf the value is true, The Merge Mode is forcibly executed in Data Sync.TRUE, FALSE
REPLICATION_MIN_DATE_QUERYA select query to return the replicate start datetime.
REPLICATION_MIN_FUNCTIONAllows a provider to specify the formula name to use for executing a server side min.
REPLICATION_START_DATEAllows a provider to specify a replicate startdate.
REPLICATION_MAX_DATE_QUERYA select query to return the replicate end datetime.
REPLICATION_MAX_FUNCTIONAllows a provider to specify the formula name to use for executing a server side max.
IGNORE_INTERVALS_ON_INITIAL_REPLICATEA list of tables which will skip dividing the replicate into chunks on the initial replicate.
CHECKCACHE_USE_PARENTIDIndicates whether the CheckCache statement should be done against the parent key column.TRUE, FALSE
CREATE_SCHEMA_PROCEDURESIndicates stored procedures that can be used for generating schema files.

The following query retrieves the operators that can be used in the WHERE clause:

SELECT * FROM sys_sqlinfo WHERE Name = 'SUPPORTED_OPERATORS'
Note that individual tables may have different limitations or requirements on the WHERE clause; refer to the Data Model section for more information.

Columns

Name Type Description
NAME String A component of SQL syntax, or a capability that can be processed on the server.
VALUE String Detail on the supported SQL or SQL syntax.

CData Python Connector for Microsoft Office 365

sys_identity

Returns information about attempted modifications.

The following query retrieves the Ids of the modified rows in a batch operation:

         SELECT * FROM sys_identity
          

Columns

Name Type Description
Id String The database-generated Id returned from a data modification operation.
Batch String An identifier for the batch. 1 for a single operation.
Operation String The result of the operation in the batch: INSERTED, UPDATED, or DELETED.
Message String SUCCESS or an error message if the update in the batch failed.

CData Python Connector for Microsoft Office 365

sys_information

Describes the available system information.

The following query retrieves all columns:

SELECT * FROM sys_information

Columns

NameTypeDescription
ProductStringThe name of the product.
VersionStringThe version number of the product.
DatasourceStringThe name of the datasource the product connects to.
NodeIdStringThe unique identifier of the machine where the product is installed.
HelpURLStringThe URL to the product's help documentation.
LicenseStringThe license information for the product. (If this information is not available, the field may be left blank or marked as 'N/A'.)
LocationStringThe file path location where the product's library is stored.
EnvironmentStringThe version of the environment or rumtine the product is currently running under.
DataSyncVersionStringThe tier of CData Sync required to use this connector.
DataSyncCategoryStringThe category of CData Sync functionality (e.g., Source, Destination).

CData Python Connector for Microsoft Office 365

Data Type Mapping

Data Type Mappings

The connector maps types from the data source to the corresponding data type available in the schema. The table below documents these mappings.

Microsoft Office 365 (OData V4) CData Schema
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

CData Python Connector for Microsoft Office 365

Connection String Options

The connection string properties are the various options that can be used to establish a connection. This section provides a complete list of the options you can configure in the connection string for this provider. Click the links for further details.

For more information on establishing a connection, see Establishing a Connection.

Authentication


PropertyDescription
AuthSchemeSpecifies the type of authentication to use when connecting to Microsoft Office 365. If this property is left blank, the default authentication is used.

Azure Authentication


PropertyDescription
AzureTenantIdentifies the Microsoft Office 365 tenant being used to access data. Accepts either the tenant's domain name (for example, contoso.onmicrosoft.com ) or its directory (tenant) ID.
AzureEnvironmentSpecifies the Azure network environment to which you will connect. Must be the same network to which your Azure account was added.

OAuth


PropertyDescription
InitiateOAuthSpecifies the process for obtaining or refreshing the OAuth access token, which maintains user access while an authenticated, authorized user is working.
OAuthVersionIdentifies the version of OAuth being used.
OAuthClientIdSpecifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication.
OAuthClientSecretSpecifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server. (Custom OAuth applications only.).
OAuthAccessTokenSpecifies the OAuth access token used to authenticate requests to the data source. This token is issued by the authorization server after a successful OAuth exchange.
OAuthSettingsLocationSpecifies the location of the settings file where OAuth values are saved.
CallbackURLIdentifies the URL users return to after authenticating to Microsoft Office 365 via OAuth (Custom OAuth applications only).
ScopeSpecifies the scope of the authenticating user's access to the application, to ensure they get appropriate access to data. If a custom OAuth application is needed, this is generally specified at the time the application is created.
OAuthAuthorizationURLThe authorization URL for the OAuth service.
OAuthAccessTokenURLThe URL from which the OAuth access token is retrieved.
OAuthVerifierSpecifies a verifier code returned from the OAuthAuthorizationURL . Used when authenticating to OAuth on a headless server, where a browser can't be launched. Requires both OAuthSettingsLocation and OAuthVerifier to be set.
OAuthRefreshTokenSpecifies the OAuth refresh token used to request a new access token after the original has expired.
OAuthExpiresInSpecifies the duration in seconds, of an OAuth Access Token's lifetime. The token can be reissued to keep access alive as long as the user keeps working.
OAuthTokenTimestampDisplays a Unix epoch timestamp in milliseconds that shows how long ago the current access token was created.

JWT OAuth


PropertyDescription
OAuthJWTCertSupplies the name of the client certificate's JWT Certificate store.
OAuthJWTCertTypeIdentifies the type of key store containing the JWT Certificate.
OAuthJWTCertPasswordProvides the password for the OAuth JWT certificate used to access a password-protected certificate store. If the certificate store does not require a password, leave this property blank.
OAuthJWTCertSubjectIdentifies the subject of the OAuth JWT certificate used to locate a matching certificate in the store. Supports partial matches and the wildcard '*' to select the first certificate.

SSL


PropertyDescription
SSLServerCertSpecifies the certificate to be accepted from the server when connecting using TLS/SSL.

Firewall


PropertyDescription
FirewallTypeSpecifies the protocol the provider uses to tunnel traffic through a proxy-based firewall.
FirewallServerIdentifies the IP address, DNS name, or host name of a proxy used to traverse a firewall and relay user queries to network resources.
FirewallPortSpecifies the TCP port to be used for a proxy-based firewall.
FirewallUserIdentifies the user ID of the account authenticating to a proxy-based firewall.
FirewallPasswordSpecifies the password of the user account authenticating to a proxy-based firewall.

Proxy


PropertyDescription
ProxyAutoDetectSpecifies whether the provider checks your system proxy settings for existing proxy server configurations, rather than using a manually specified proxy server.
ProxyServerIdentifies the hostname or IP address of the proxy server through which you want to route HTTP traffic.
ProxyPortIdentifies the TCP port on your specified proxy server that has been reserved for routing HTTP traffic to and from the client.
ProxyAuthSchemeSpecifies the authentication method the provider uses when authenticating to the proxy server specified in the ProxyServer connection property.
ProxyUserProvides the username of a user account registered with the proxy server specified in the ProxyServer connection property.
ProxyPasswordSpecifies the password of the user specified in the ProxyUser connection property.
ProxySSLTypeSpecifies the SSL type to use when connecting to the proxy server specified in the ProxyServer connection property.
ProxyExceptionsSpecifies a semicolon-separated list of destination hostnames or IPs that are exempt from connecting through the proxy server set in the ProxyServer connection property.

Logging


PropertyDescription
LogfileSpecifies the file path to the log file where the provider records its activities, such as authentication, query execution, and connection details.
VerbositySpecifies the verbosity level of the log file, which controls the amount of detail logged. Supported values range from 1 to 5.
LogModulesSpecifies the core modules to include in the log file. Use a semicolon-separated list of module names. By default, all modules are logged.
MaxLogFileSizeSpecifies the maximum size of a single log file in bytes. For example, '10 MB'. When the file reaches the limit, the provider creates a new log file with the date and time appended to the name.
MaxLogFileCountSpecifies the maximum number of log files the provider retains. When the limit is reached, the oldest log file is deleted to make space for a new one.

Schema


PropertyDescription
LocationSpecifies the location of a directory containing schema files that define tables, views, and stored procedures. Depending on your service's requirements, this may be expressed as either an absolute path or a relative path.
BrowsableSchemasOptional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC .
TablesOptional setting that restricts the tables reported to a subset of all available tables. For example, Tables=TableA,TableB,TableC .
ViewsOptional setting that restricts the views reported to a subset of the available tables. For example, Views=ViewA,ViewB,ViewC .

Caching


PropertyDescription
AutoCacheSpecifies whether the content of tables targeted by SELECT queries is automatically cached to the specified cache database.
CacheProviderThe namespace of an ADO.NET provider. The specified provider is used as the target database for all caching operations.
CacheDriverThe driver class of a JDBC driver. The specified driver is used to connect to the target database for all caching operations.
CacheConnectionSpecifies the connection string for the specified cache database.
CacheLocationSpecifies the path to the cache when caching to a file.
CacheToleranceNotes the tolerance, in seconds, for stale data in the specified cache database. Requires AutoCache to be set to True.
OfflineGets the data from the specified cache database instead of live Microsoft Office 365 data.
CacheMetadataDetermines whether the provider caches table metadata to a file-based cache database.

Miscellaneous


PropertyDescription
DefaultGroupsDetermines the default group context when accessing group-scoped resources in Microsoft Office 365.
DefaultUserDetermines the default user context when accessing user-scoped resources in Microsoft Office 365.
DirectoryRetrievalDepthSpecifies how far down in a Files table's subdirectories should be scanned to retrieve results. If DirectoryRetrievalDepth is not explicitly set, the driver uses a depth of 5 sublevels below the root (default).
GroupIdSpecifies the Id of a Microsoft Office 365 group whose data you want to access.
MaxRowsSpecifies the maximum number of rows returned for queries that do not include either aggregation or GROUP BY.
MessageContentTypeDetermines whether to return messages as in html format or as text.
OtherSpecifies advanced connection properties for specialized scenarios. Use this property only under the guidance of our Support team to address specific issues.
PagesizeSpecifies the maximum number of records per page the provider returns when requesting data from Microsoft Office 365.
PseudoColumnsSpecifies the pseudocolumns to expose as table columns, expressed as a string in the format 'TableName=ColumnName;TableName=ColumnName'.
ReadonlyToggles read-only access to Microsoft Office 365 from the provider.
RTKSpecifies the runtime key for licensing the provider. If unset or invalid, the provider defaults to the standard licensing method. This property is only required in environments where the standard licensing method is unsupported or requires a runtime key.
TimeoutSpecifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error.
UseClientSidePagingToggles the CData ADO.NET Provider for Microsoft Office 365's use of client side paging.
UserDefinedViewsSpecifies a filepath to a JSON configuration file that defines custom views. The provider automatically detects and uses the views specified in this file.
UserIdSpecifies the Id of a Microsoft Office 365 user whose data you want to access.
CData Python Connector for Microsoft Office 365

Authentication

This section provides a complete list of the Authentication properties you can configure in the connection string for this provider.


PropertyDescription
AuthSchemeSpecifies the type of authentication to use when connecting to Microsoft Office 365. If this property is left blank, the default authentication is used.
CData Python Connector for Microsoft Office 365

AuthScheme

Specifies the type of authentication to use when connecting to Microsoft Office 365. If this property is left blank, the default authentication is used.

Possible Values

AzureAD, AzureMSI, AzureServicePrincipal, AzureServicePrincipalCert

Data Type

string

Default Value

"AzureAD"

Remarks

AuthScheme values include:

  • AzureAD (default): Perform Azure Active Directory (user-based) OAuth authentication.
  • AzureMSI: Automatically obtain Azure AD Managed Service Identity credentials when running on an Azure VM.
  • AzureServicePrincipal: Authenticate as an Azure Service Principal (role-based, application-based) using a Client Secret.
  • AzureServicePrincipalCert: Authenticate as an Azure Service Principal (role-based, application-based) using a Certificate.

For information about creating a custom application to authenticate with Azure AD, see Creating an Entra ID (Azure AD) Application.

For information about creating a custom application to authenticate with Azure AD Service Principal, see Creating a Service Principal App in Entra ID (Azure AD).

CData Python Connector for Microsoft Office 365

Azure Authentication

This section provides a complete list of the Azure Authentication properties you can configure in the connection string for this provider.


PropertyDescription
AzureTenantIdentifies the Microsoft Office 365 tenant being used to access data. Accepts either the tenant's domain name (for example, contoso.onmicrosoft.com ) or its directory (tenant) ID.
AzureEnvironmentSpecifies the Azure network environment to which you will connect. Must be the same network to which your Azure account was added.
CData Python Connector for Microsoft Office 365

AzureTenant

Identifies the Microsoft Office 365 tenant being used to access data. Accepts either the tenant's domain name (for example, contoso.onmicrosoft.com ) or its directory (tenant) ID.

Data Type

string

Default Value

""

Remarks

A tenant is a digital container for your organization's users and resources, managed through Microsoft Entra ID (formerly Azure AD). Each tenant is associated with a unique directory ID, and often with a custom domain (for example, microsoft.com or contoso.onmicrosoft.com).

To find the directory (tenant) ID in the Microsoft Entra Admin Center, navigate to Microsoft Entra ID > Properties and copy the value labeled "Directory (tenant) ID".

This property is required in the following cases:

  • When AuthScheme is set to AzureServicePrincipal or AzureServicePrincipalCert
  • When AuthScheme is AzureAD and the user account belongs to multiple tenants

You can provide the tenant value in one of two formats:

  • A domain name (for example, contoso.onmicrosoft.com)
  • A directory (tenant) ID in GUID format (for example, c9d7b8e4-1234-4f90-bc1a-2a28e0f9e9e0)

Specifying the tenant explicitly ensures that the authentication request is routed to the correct directory, which is especially important when a user belongs to multiple tenants or when using service principal–based authentication.

If this value is omitted when required, authentication may fail or connect to the wrong tenant. This can result in errors such as unauthorized or resource not found.

CData Python Connector for Microsoft Office 365

AzureEnvironment

Specifies the Azure network environment to which you will connect. Must be the same network to which your Azure account was added.

Possible Values

GLOBAL, CHINA, USGOVT, USGOVTDOD

Data Type

string

Default Value

"GLOBAL"

Remarks

Required if your Azure account is part of a different network than the Global network, such as China, USGOVT, or USGOVTDOD.

CData Python Connector for Microsoft Office 365

OAuth

This section provides a complete list of the OAuth properties you can configure in the connection string for this provider.


PropertyDescription
InitiateOAuthSpecifies the process for obtaining or refreshing the OAuth access token, which maintains user access while an authenticated, authorized user is working.
OAuthVersionIdentifies the version of OAuth being used.
OAuthClientIdSpecifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication.
OAuthClientSecretSpecifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server. (Custom OAuth applications only.).
OAuthAccessTokenSpecifies the OAuth access token used to authenticate requests to the data source. This token is issued by the authorization server after a successful OAuth exchange.
OAuthSettingsLocationSpecifies the location of the settings file where OAuth values are saved.
CallbackURLIdentifies the URL users return to after authenticating to Microsoft Office 365 via OAuth (Custom OAuth applications only).
ScopeSpecifies the scope of the authenticating user's access to the application, to ensure they get appropriate access to data. If a custom OAuth application is needed, this is generally specified at the time the application is created.
OAuthAuthorizationURLThe authorization URL for the OAuth service.
OAuthAccessTokenURLThe URL from which the OAuth access token is retrieved.
OAuthVerifierSpecifies a verifier code returned from the OAuthAuthorizationURL . Used when authenticating to OAuth on a headless server, where a browser can't be launched. Requires both OAuthSettingsLocation and OAuthVerifier to be set.
OAuthRefreshTokenSpecifies the OAuth refresh token used to request a new access token after the original has expired.
OAuthExpiresInSpecifies the duration in seconds, of an OAuth Access Token's lifetime. The token can be reissued to keep access alive as long as the user keeps working.
OAuthTokenTimestampDisplays a Unix epoch timestamp in milliseconds that shows how long ago the current access token was created.
CData Python Connector for Microsoft Office 365

InitiateOAuth

Specifies the process for obtaining or refreshing the OAuth access token, which maintains user access while an authenticated, authorized user is working.

Possible Values

OFF, REFRESH, GETANDREFRESH

Data Type

string

Default Value

"OFF"

Remarks

OAuth is an authorization framework that enables applications to obtain limited access to user accounts on an HTTP service. The OAuth flow defines the method to be used for:

  • Logging in users.
  • Exchanging user credentials for an OAuth access token to be used for authentication.
  • Providing limited access to applications.

The options for initiating and maintaining OAuth access are named for the parts of that flow that the connector handles:

OFF The connector provides no automatic OAuth flow initiation. The OAuth flow is handled entirely by the user.
This means that the user must refresh the token manually, and reconnect with an updated OAuthAccessToken property when the current token expires.
GETANDREFRESH The connector handles the entire OAuth flow (both GET and REFRESH). This means that if a token already exists, the connector refreshes it when necessary; if no token currently exists, the connector obtains it by prompting the user to login.
REFRESH The user obtains the OAuth Access Token and sets up the sequence for refreshing the OAuth Access Token. (The user is never prompted to log in to authenticate.) After the user logs in, the connector handles the refresh of the OAuth Access Token.

For more information on how to set up OAuth and use this property when configuring a connection, see Establishing a Connection.

CData Python Connector for Microsoft Office 365

OAuthVersion

Identifies the version of OAuth being used.

Possible Values

1.0, 2.0

Data Type

string

Default Value

"2.0"

Remarks

Accepted entries are: 1.0,2.0

CData Python Connector for Microsoft Office 365

OAuthClientId

Specifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication.

Data Type

string

Default Value

""

Remarks

This property is required in two cases:

  • When using a custom OAuth application, such as in web-based authentication flows, service-based authentication, or certificate-based flows that require application registration.
  • If the driver does not provide embedded OAuth credentials.

(When the driver provides embedded OAuth credentials, this value may already be provided by the connector and thus not require manual entry.)

OAuthClientId is generally used alongside other OAuth-related properties such as OAuthClientSecret and OAuthSettingsLocation when configuring an authenticated connection.

OAuthClientId is one of the key connection parameters that need to be set before users can authenticate via OAuth. You can usually find this value in your identity provider’s application registration settings. Look for a field labeled Client ID, Application ID, or Consumer Key.

While the client ID is not considered a confidential value like a client secret, it is still part of your application's identity and should be handled carefully. Avoid exposing it in public repositories or shared configuration files.

For more information on how this property is used when configuring a connection, see Establishing a Connection.

CData Python Connector for Microsoft Office 365

OAuthClientSecret

Specifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server. (Custom OAuth applications only.).

Data Type

string

Default Value

""

Remarks

This property (sometimes called the application secret or consumer secret) is required when using a custom OAuth application in any flow that requires secure client authentication, such as web-based OAuth, service-based connections, or certificate-based authorization flows. It is not required when using an embedded OAuth application.

The client secret is used during the token exchange step of the OAuth flow, when the driver requests an access token from the authorization server. If this value is missing or incorrect, authentication fails with either an invalid_client or an unauthorized_client error.

OAuthClientSecret is one of the key connection parameters that need to be set before users can authenticate via OAuth. You can obtain this value from your identity provider when registering the OAuth application.

Notes:

  • This value should be stored securely and never exposed in public repositories, scripts, or unsecured environments.
  • Client secrets may also expire after a set period. Be sure to monitor expiration dates and rotate secrets as needed to maintain uninterrupted access.

For more information on how this property is used when configuring a connection, see Establishing a Connection

CData Python Connector for Microsoft Office 365

OAuthAccessToken

Specifies the OAuth access token used to authenticate requests to the data source. This token is issued by the authorization server after a successful OAuth exchange.

Data Type

string

Default Value

""

Remarks

OAuthAccessToken is a temporary credential that authorizes access to protected resources. It is typically returned by the identity provider after the user or client application completes an OAuth authentication flow. This property is most commonly used in automated workflows or custom OAuth implementations where you want to manage token handling outside of the driver.

The OAuth access token has a server-dependent timeout, limiting user access. The timeout is set using the OAuthExpiresIn property. However, it can be reissued between requests to keep access alive as long as the user keeps working.

If InitiateOAuth is set to REFRESH, we recommend that you also set both OAuthExpiresIn and OAuthTokenTimestamp. The connector uses these properties to determine when the token expires so it can refresh most efficiently. If OAuthExpiresIn and OAuthTokenTimestamp are not specified, the connector refreshes the token immediately.

Note: Access tokens should be treated as sensitive credentials and stored securely. Avoid exposing them in logs, scripts, or configuration files that are not access-controlled.

For more information on how this property is used when configuring a connection, see Establishing a Connection.

CData Python Connector for Microsoft Office 365

OAuthSettingsLocation

Specifies the location of the settings file where OAuth values are saved.

Data Type

string

Default Value

"%APPDATA%\\CData\\Office365 Data Provider\\OAuthSettings.txt"

Remarks

Storing OAuth settings in a central location avoids the need for users to enter OAuth connection properties manually each time they log in. It also enables credentials to be shared across connections or processes.

You can store OAuth values in a central file for shared access to those values, in either of the following ways:

  • Set InitiateOAuth to either GETANDREFRESH or REFRESH and specify a filepath to the OAuth settings file.
  • Use memory storage to load the credentials into static memory.

The following sections provide more detail on each of these methods.

Specifying the OAuthSettingsLocation Filepath

The default OAuth setting location is %APPDATA%\\CData\\Office365 Data Provider\\OAuthSettings.txt, with %APPDATA% set to the user's configuration directory. Default values vary, depending on the user's operating system.

  • Windows (ODBC and Power BI): registry://%DSN%
  • Windows: %APPDATA%CDataOffice365 Data Provider\OAuthSettings.txt
  • Mac: %APPDATA%/CData/Office365 Data Provider/OAuthSettings.txt
  • Linux: %APPDATA%/CData/Office365 Data Provider/OAuthSettings.txt

Loading Credentials Via Memory Storage

Memory locations are specified by using a value starting with memory://, followed by a unique identifier for that set of credentials (for example, memory://user1). The identifier can be anything you choose, but it should be unique to the user.

Unlike file-based storage, where credentials persist across connections, memory storage loads the credentials into static memory and the credentials are shared between connections using the same identifier for the life of the process. To persist credentials outside the current process, you must manually store the credentials prior to closing the connection. This enables you to set them in the connection when the process is started again.

To retrieve OAuth property values, query the sys_connection_props system table. If there are multiple connections using the same credentials, the properties are read from the previously closed connection.

Supported Storage Types

  • memory://: Stores OAuth tokens in-memory (unique identifier, shared within same process, etc.)
  • registry://: Only supported in the Windows ODBC and Power BI editions. Stores OAuth tokens in the registry under the DSN settings. Must end in a DSN name like registry://CData Python Connector for Microsoft Office 365 Data Source, or registry://%DSN%.
  • %DSN%: The name of the DSN you are connecting with.
  • Default (no prefix): Stores OAuth tokens within files. The value can be either an absolute path, or a path starting with %APPDATA% or %PROGRAMFILES%.

For more information on how this property is used when configuring a connection, see Establishing a Connection.

CData Python Connector for Microsoft Office 365

CallbackURL

Identifies the URL users return to after authenticating to Microsoft Office 365 via OAuth (Custom OAuth applications only).

Data Type

string

Default Value

""

Remarks

If you created a custom OAuth application, the OAuth authorization server redirects the user to this URL during the authentication process. This value must match the callback URL you specified when you configured the custom OAuth application.

CData Python Connector for Microsoft Office 365

Scope

Specifies the scope of the authenticating user's access to the application, to ensure they get appropriate access to data. If a custom OAuth application is needed, this is generally specified at the time the application is created.

Data Type

string

Default Value

""

Remarks

Scopes are set to define what kind of access the authenticating user will have; for example, read, read and write, restricted access to sensitive information. System administrators can use scopes to selectively enable access by functionality or security clearance.

When InitiateOAuth is set to GETANDREFRESH, you must use this property if you want to change which scopes are requested.

When InitiateOAuth is set to either REFRESH or OFF, you can change which scopes are requested using either this property or the Scope input.

CData Python Connector for Microsoft Office 365

OAuthAuthorizationURL

The authorization URL for the OAuth service.

Data Type

string

Default Value

""

Remarks

The authorization URL for the OAuth service. At this URL, the user logs into the server and grants permissions to the application. In OAuth 1.0, if permissions are granted, the request token is authorized.

CData Python Connector for Microsoft Office 365

OAuthAccessTokenURL

The URL from which the OAuth access token is retrieved.

Data Type

string

Default Value

""

Remarks

In OAuth 1.0, the authorized request token is exchanged for the access token at this URL.

CData Python Connector for Microsoft Office 365

OAuthVerifier

Specifies a verifier code returned from the OAuthAuthorizationURL . Used when authenticating to OAuth on a headless server, where a browser can't be launched. Requires both OAuthSettingsLocation and OAuthVerifier to be set.

Data Type

string

Default Value

""

Remarks

For detailed instructions about how to obtain the OAuthVerifier value, see Establishing a Connection.

CData Python Connector for Microsoft Office 365

OAuthRefreshToken

Specifies the OAuth refresh token used to request a new access token after the original has expired.

Data Type

string

Default Value

""

Remarks

The refresh token is used to obtain a new access token when the current one expires. It enables seamless authentication for long-running or automated workflows without requiring the user to log in again. This property is especially important in headless, CI/CD, or server-based environments where interactive authentication is not possible.

The refresh token is typically obtained during the initial OAuth exchange by calling the GetOAuthAccessToken stored procedure. After that, it can be set using this property to enable automatic token refresh, or passed to the RefreshOAuthAccessTokenproc; stored procedure if you prefer to manage the refresh manually.

When InitiateOAuth is set to REFRESH, the driver uses this token to retrieve a new access token automatically. After the first refresh, the driver saves updated tokens in the location defined by OAuthSettingsLocation, and uses those values for subsequent connections.

Note: The OAuthRefreshToken should be handled securely and stored in a trusted location. Like access tokens, refresh tokens can expire or be revoked depending on the identity provider’s policies.

For more information on how this property is used when configuring a connection, see Establishing a Connection.

CData Python Connector for Microsoft Office 365

OAuthExpiresIn

Specifies the duration in seconds, of an OAuth Access Token's lifetime. The token can be reissued to keep access alive as long as the user keeps working.

Data Type

string

Default Value

""

Remarks

The OAuth Access Token is assigned to an authenticated user, granting that user access to the network for a specified period of time. The access token is used in place of the user's login ID and password, which stay on the server.

An access token created by the server is only valid for a limited time. OAuthExpiresIn is the number of seconds the token is valid from when it was created. For example, a token generated at 2024-01-29 20:00:00 UTC that expires at 2024-01-29 21:00:00 UTC (an hour later) would have an OAuthExpiresIn value of 3600, no matter what the current time is.

To determine how long the user has before the Access Token will expire, check OAuthTokenTimestamp.

CData Python Connector for Microsoft Office 365

OAuthTokenTimestamp

Displays a Unix epoch timestamp in milliseconds that shows how long ago the current access token was created.

Data Type

string

Default Value

""

Remarks

The OAuth access token is assigned to an authenticated user, granting that user access to the network for a specified period of time. The access token is used in place of the user's login ID and password, which stay on the server.

An access token created by the server is only valid for a limited time. OAuthTokenTimestamp is the Unix timestamp when the server created the token. For example, OAuthTokenTimestamp=1706558400 indicates the OAuthAccessToken was generated by the server at 2024-01-29 20:00:00 UTC.

CData Python Connector for Microsoft Office 365

JWT OAuth

This section provides a complete list of the JWT OAuth properties you can configure in the connection string for this provider.


PropertyDescription
OAuthJWTCertSupplies the name of the client certificate's JWT Certificate store.
OAuthJWTCertTypeIdentifies the type of key store containing the JWT Certificate.
OAuthJWTCertPasswordProvides the password for the OAuth JWT certificate used to access a password-protected certificate store. If the certificate store does not require a password, leave this property blank.
OAuthJWTCertSubjectIdentifies the subject of the OAuth JWT certificate used to locate a matching certificate in the store. Supports partial matches and the wildcard '*' to select the first certificate.
CData Python Connector for Microsoft Office 365

OAuthJWTCert

Supplies the name of the client certificate's JWT Certificate store.

Data Type

string

Default Value

""

Remarks

The OAuthJWTCertType field specifies the type of the certificate store specified in OAuthJWTCert. If the store is password-protected, use OAuthJWTCertPassword to supply the password..

OAuthJWTCert is used in conjunction with the OAuthJWTCertSubject field in order to specify client certificates. If OAuthJWTCert has a value, and OAuthJWTCertSubject is set, the CData Python Connector for Microsoft Office 365 initiates a search for a certificate. For further information, see OAuthJWTCertSubject.

Designations of certificate stores are platform-dependent.

Notes

  • The most common User and Machine certificate stores in Windows include:
    • MY: A certificate store holding personal certificates with their associated private keys.
    • CA: Certifying authority certificates.
    • ROOT: Root certificates.
    • SPC: Software publisher certificates.
  • In Java, the certificate store normally is a file containing certificates and optional private keys.
  • When the certificate store type is PFXFile, this property must be set to the name of the file.
  • When the type is PFXBlob, the property must be set to the binary contents of a PFX file (i.e. PKCS12 certificate store).

CData Python Connector for Microsoft Office 365

OAuthJWTCertType

Identifies the type of key store containing the JWT Certificate.

Possible Values

USER, MACHINE, PFXFILE, PFXBLOB, JKSFILE, JKSBLOB, PEMKEY_FILE, PEMKEY_BLOB, PUBLIC_KEY_FILE, PUBLIC_KEY_BLOB, SSHPUBLIC_KEY_FILE, SSHPUBLIC_KEY_BLOB, P7BFILE, PPKFILE, XMLFILE, XMLBLOB, BCFKSFILE, BCFKSBLOB

Data Type

string

Default Value

"USER"

Remarks

ValueDescriptionNotes
USERA certificate store owned by the current user. Only available in Windows.
MACHINEA machine store.Not available in Java or other non-Windows environments.
PFXFILEA PFX (PKCS12) file containing certificates.
PFXBLOBA string (base-64-encoded) representing a certificate store in PFX (PKCS12) format.
JKSFILEA Java key store (JKS) file containing certificates.Only available in Java.
JKSBLOBA string (base-64-encoded) representing a certificate store in Java key store (JKS) format. Only available in Java.
PEMKEY_FILEA PEM-encoded file that contains a private key and an optional certificate.
PEMKEY_BLOBA string (base64-encoded) that contains a private key and an optional certificate.
PUBLIC_KEY_FILEA file that contains a PEM- or DER-encoded public key certificate.
PUBLIC_KEY_BLOBA string (base-64-encoded) that contains a PEM- or DER-encoded public key certificate.
SSHPUBLIC_KEY_FILEA file that contains an SSH-style public key.
SSHPUBLIC_KEY_BLOBA string (base-64-encoded) that contains an SSH-style public key.
P7BFILEA PKCS7 file containing certificates.
PPKFILEA file that contains a PPK (PuTTY Private Key).
XMLFILEA file that contains a certificate in XML format.
XMLBLOBAstring that contains a certificate in XML format.
BCFKSFILEA file that contains an Bouncy Castle keystore.
BCFKSBLOBA string (base-64-encoded) that contains a Bouncy Castle keystore.

CData Python Connector for Microsoft Office 365

OAuthJWTCertPassword

Provides the password for the OAuth JWT certificate used to access a password-protected certificate store. If the certificate store does not require a password, leave this property blank.

Data Type

string

Default Value

""

Remarks

This property specifies the password needed to open a password-protected certificate store. To determine if a password is necessary, refer to the documentation or configuration for your specific certificate store.

CData Python Connector for Microsoft Office 365

OAuthJWTCertSubject

Identifies the subject of the OAuth JWT certificate used to locate a matching certificate in the store. Supports partial matches and the wildcard '*' to select the first certificate.

Data Type

string

Default Value

"*"

Remarks

The value of this property is used to locate a matching certificate in the store. The search process works as follows:

  • If an exact match for the subject is found, the corresponding certificate is selected.
  • If no exact match is found, the store is searched for certificates whose subjects contain the property value.
  • If no match is found, no certificate is selected.

You can set the value to '*' to automatically select the first certificate in the store. The certificate subject is a comma-separated list of distinguished name fields and values. For example: CN=www.server.com, OU=test, C=US, E=support@cdata.com.

Common fields include:

FieldMeaning
CNCommon Name. This is commonly a host name like www.server.com.
OOrganization
OUOrganizational Unit
LLocality
SState
CCountry
EEmail Address

If a field value contains a comma, enclose it in quotes. For example: "O=ACME, Inc.".

CData Python Connector for Microsoft Office 365

SSL

This section provides a complete list of the SSL properties you can configure in the connection string for this provider.


PropertyDescription
SSLServerCertSpecifies the certificate to be accepted from the server when connecting using TLS/SSL.
CData Python Connector for Microsoft Office 365

SSLServerCert

Specifies the certificate to be accepted from the server when connecting using TLS/SSL.

Data Type

string

Default Value

""

Remarks

If you are using a TLS/SSL connection, use this property to specify the TLS/SSL certificate to be accepted from the server. If you specify a value for this property, all other certificates that are not trusted by the machine are rejected.

This property can take the following forms:

Description Example
A full PEM Certificate (example shortened for brevity) -----BEGIN CERTIFICATE-----
MIIChTCCAe4CAQAwDQYJKoZIhv......Qw==
-----END CERTIFICATE-----
A path to a local file containing the certificate C:\cert.cer
The public key (example shortened for brevity) -----BEGIN RSA PUBLIC KEY-----
MIGfMA0GCSq......AQAB
-----END RSA PUBLIC KEY-----
The MD5 Thumbprint (hex values can also be either space- or colon-separated) ecadbdda5a1529c58a1e9e09828d70e4
The SHA1 Thumbprint (hex values can also be either space- or colon-separated) 34a929226ae0819f2ec14b4a3d904f801cbb150d

Note: It is possible to use '*' to signify that all certificates should be accepted, but due to security concerns this is not recommended.

CData Python Connector for Microsoft Office 365

Firewall

This section provides a complete list of the Firewall properties you can configure in the connection string for this provider.


PropertyDescription
FirewallTypeSpecifies the protocol the provider uses to tunnel traffic through a proxy-based firewall.
FirewallServerIdentifies the IP address, DNS name, or host name of a proxy used to traverse a firewall and relay user queries to network resources.
FirewallPortSpecifies the TCP port to be used for a proxy-based firewall.
FirewallUserIdentifies the user ID of the account authenticating to a proxy-based firewall.
FirewallPasswordSpecifies the password of the user account authenticating to a proxy-based firewall.
CData Python Connector for Microsoft Office 365

FirewallType

Specifies the protocol the provider uses to tunnel traffic through a proxy-based firewall.

Possible Values

NONE, TUNNEL, SOCKS4, SOCKS5

Data Type

string

Default Value

"NONE"

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

Note: By default, the connector connects to the system proxy. To disable this behavior and connect to one of the following proxy types, set ProxyAutoDetect to false.

The following table provides port number information for each of the supported protocols.

Protocol Default Port Description
TUNNEL 80 The port where the connector opens a connection to Microsoft Office 365. Traffic flows back and forth via the proxy at this location.
SOCKS4 1080 The port where the connector opens a connection to Microsoft Office 365. SOCKS 4 then passes theFirewallUser value to the proxy, which determines whether the connection request should be granted.
SOCKS5 1080 The port where the connector sends data to Microsoft Office 365. If the SOCKS 5 proxy requires authentication, set FirewallUser and FirewallPassword to credentials the proxy recognizes.

To connect to HTTP proxies, use ProxyServer and ProxyPort. To authenticate to HTTP proxies, use ProxyAuthScheme, ProxyUser, and ProxyPassword.

CData Python Connector for Microsoft Office 365

FirewallServer

Identifies the IP address, DNS name, or host name of a proxy used to traverse a firewall and relay user queries to network resources.

Data Type

string

Default Value

""

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

CData Python Connector for Microsoft Office 365

FirewallPort

Specifies the TCP port to be used for a proxy-based firewall.

Data Type

int

Default Value

0

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

CData Python Connector for Microsoft Office 365

FirewallUser

Identifies the user ID of the account authenticating to a proxy-based firewall.

Data Type

string

Default Value

""

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

CData Python Connector for Microsoft Office 365

FirewallPassword

Specifies the password of the user account authenticating to a proxy-based firewall.

Data Type

string

Default Value

""

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

CData Python Connector for Microsoft Office 365

Proxy

This section provides a complete list of the Proxy properties you can configure in the connection string for this provider.


PropertyDescription
ProxyAutoDetectSpecifies whether the provider checks your system proxy settings for existing proxy server configurations, rather than using a manually specified proxy server.
ProxyServerIdentifies the hostname or IP address of the proxy server through which you want to route HTTP traffic.
ProxyPortIdentifies the TCP port on your specified proxy server that has been reserved for routing HTTP traffic to and from the client.
ProxyAuthSchemeSpecifies the authentication method the provider uses when authenticating to the proxy server specified in the ProxyServer connection property.
ProxyUserProvides the username of a user account registered with the proxy server specified in the ProxyServer connection property.
ProxyPasswordSpecifies the password of the user specified in the ProxyUser connection property.
ProxySSLTypeSpecifies the SSL type to use when connecting to the proxy server specified in the ProxyServer connection property.
ProxyExceptionsSpecifies a semicolon-separated list of destination hostnames or IPs that are exempt from connecting through the proxy server set in the ProxyServer connection property.
CData Python Connector for Microsoft Office 365

ProxyAutoDetect

Specifies whether the provider checks your system proxy settings for existing proxy server configurations, rather than using a manually specified proxy server.

Data Type

bool

Default Value

true

Remarks

When this connection property is set to True, the connector checks your system proxy settings for existing proxy server configurations (no need to manually supply proxy server details).

This connection property takes precedence over other proxy settings. If you want to configure the connector to connect to a specific proxy server, set ProxyAutoDetect to False.

On Windows, the connector reads the proxy settings from the Internet Options in the registry, specifically the registry key HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\. On Windows 10 and later, this corresponds to the Proxy Settings found in the Windows Settings.

Note that these settings apply only to the current user of the machine. If you're running an application as a service, the connector does not read your own user's settings. You must instead manually supply the proxy settings in the connector's connection properties.

On Mac, the connector reads proxy settings from the system-configured CFNetwork settings.

On Linux, this property is unsupported, and is set to False by default.

To connect to an HTTP proxy, see ProxyServer. For other proxies, such as SOCKS or tunneling, see FirewallType.

CData Python Connector for Microsoft Office 365

ProxyServer

Identifies the hostname or IP address of the proxy server through which you want to route HTTP traffic.

Data Type

string

Default Value

""

Remarks

The connector only routes HTTP traffic through the proxy server specified in this connection property when ProxyAutoDetect is set to False.

If ProxyAutoDetect is set to True (the default), the connector instead routes HTTP traffic through the proxy server specified in your system proxy settings.

CData Python Connector for Microsoft Office 365

ProxyPort

Identifies the TCP port on your specified proxy server that has been reserved for routing HTTP traffic to and from the client.

Data Type

int

Default Value

80

Remarks

The connector only routes HTTP traffic through the ProxyServer port specified in this connection property when ProxyAutoDetect is set to False.

If ProxyAutoDetect is set to True (the default), the connector instead routes HTTP traffic through the proxy server port specified in your system proxy settings.

For other proxy types, see FirewallType.

CData Python Connector for Microsoft Office 365

ProxyAuthScheme

Specifies the authentication method the provider uses when authenticating to the proxy server specified in the ProxyServer connection property.

Possible Values

BASIC, DIGEST, NONE, NEGOTIATE, NTLM

Data Type

string

Default Value

"BASIC"

Remarks

Note: The connector only uses this ProxyAuthScheme when ProxyAutoDetect is set to False. If ProxyAutoDetect is set to True (the default), the connector instead uses the authentication method specified in your system proxy settings.

Supported authentication types :

  • BASIC: The connector performs HTTP basic authentication.
  • DIGEST: The connector performs HTTP digest authentication.
  • NTLM: The connector retrieves an NTLM token.
  • NEGOTIATE: The connector retrieves an NTLM or Kerberos token based on the applicable protocol for authentication.
  • NONE: Signifies that the ProxyServer does not require authentication.

For all values other than NONE, you must also set the ProxyUser and ProxyPassword connection properties.

If you need to use another authentication type, such as SOCKS 5 authentication, see FirewallType.

CData Python Connector for Microsoft Office 365

ProxyUser

Provides the username of a user account registered with the proxy server specified in the ProxyServer connection property.

Data Type

string

Default Value

""

Remarks

The ProxyUser and ProxyPassword connection properties are used to connect and authenticate against the HTTP proxy specified in ProxyServer.

After selecting one of the available authentication types in ProxyAuthScheme, set this property as follows:

ProxyAuthScheme Value Value to set for ProxyUser
BASIC The username of a user registered with the proxy server.
DIGEST The username of a user registered with the proxy server.
NEGOTIATE The username of a Windows user who is a valid user in the domain or trusted domain that the proxy server is part of, in the format user@domain or domain\user.
NTLM The username of a Windows user who is a valid user in the domain or trusted domain that the proxy server is part of, in the format user@domain or domain\user.
NONE Do not set the ProxyPassword connection property.

Note: The connector only uses this username if ProxyAutoDetect is set to False. If ProxyAutoDetect is set to True (the default), the connector instead uses the username specified in your system proxy settings.

CData Python Connector for Microsoft Office 365

ProxyPassword

Specifies the password of the user specified in the ProxyUser connection property.

Data Type

string

Default Value

""

Remarks

The ProxyUser and ProxyPassword connection properties are used to connect and authenticate against the HTTP proxy specified in ProxyServer.

After selecting one of the available authentication types in ProxyAuthScheme, set this property as follows:

ProxyAuthScheme Value Value to set for ProxyPassword
BASIC The password associated with the proxy server user specified in ProxyUser.
DIGEST The password associated with the proxy server user specified in ProxyUser.
NEGOTIATE The password associated with the Windows user account specified in ProxyUser.
NTLM The password associated with the Windows user account specified in ProxyUser.
NONE Do not set the ProxyPassword connection property.

For SOCKS 5 authentication or tunneling, see FirewallType.

Note: The connector only uses this password if ProxyAutoDetect is set to False. If ProxyAutoDetect is set to True (the default), the connector instead uses the password specified in your system proxy settings.

CData Python Connector for Microsoft Office 365

ProxySSLType

Specifies the SSL type to use when connecting to the proxy server specified in the ProxyServer connection property.

Possible Values

AUTO, ALWAYS, NEVER, TUNNEL

Data Type

string

Default Value

"AUTO"

Remarks

This property determines when to use SSL for the connection to the HTTP proxy specified by ProxyServer. You can set this connection property to the following values :

AUTODefault setting. If ProxyServer is set to an HTTPS URL, the connector uses the TUNNEL option. If ProxyServer is set to an HTTP URL, the component uses the NEVER option.
ALWAYSThe connection is always SSL enabled.
NEVERThe connection is not SSL enabled.
TUNNELThe connection is made through a tunneling proxy. The proxy server opens a connection to the remote host and traffic flows back and forth through the proxy.

CData Python Connector for Microsoft Office 365

ProxyExceptions

Specifies a semicolon-separated list of destination hostnames or IPs that are exempt from connecting through the proxy server set in the ProxyServer connection property.

Data Type

string

Default Value

""

Remarks

The ProxyServer is used for all addresses, except for addresses defined in this property. Use semicolons to separate entries.

Note: The connector uses the system proxy settings by default, without further configuration needed. If you want to explicitly configure proxy exceptions for this connection, set ProxyAutoDetect to False.

CData Python Connector for Microsoft Office 365

Logging

This section provides a complete list of the Logging properties you can configure in the connection string for this provider.


PropertyDescription
LogfileSpecifies the file path to the log file where the provider records its activities, such as authentication, query execution, and connection details.
VerbositySpecifies the verbosity level of the log file, which controls the amount of detail logged. Supported values range from 1 to 5.
LogModulesSpecifies the core modules to include in the log file. Use a semicolon-separated list of module names. By default, all modules are logged.
MaxLogFileSizeSpecifies the maximum size of a single log file in bytes. For example, '10 MB'. When the file reaches the limit, the provider creates a new log file with the date and time appended to the name.
MaxLogFileCountSpecifies the maximum number of log files the provider retains. When the limit is reached, the oldest log file is deleted to make space for a new one.
CData Python Connector for Microsoft Office 365

Logfile

Specifies the file path to the log file where the provider records its activities, such as authentication, query execution, and connection details.

Data Type

string

Default Value

""

Remarks

This property specifies the location and name of the log file where the connector records its operations, including authentication events, query execution, and connection details. If the specified file does not exist, the connector creates it. Ensure that the user or the service running the connector has write access to the specified path or file. Without sufficient permissions, the log file is not created.

Sensitive information from the connection string, such as passwords and tokens, is automatically masked in the logs. However, sensitive information present in the data itself may not be masked.

If you specify a relative path for Logfile, and if the Location property is set, that directory is used as the base path for the log file.

Additional properties allow you to customize logging behavior:

CData Python Connector for Microsoft Office 365

Verbosity

Specifies the verbosity level of the log file, which controls the amount of detail logged. Supported values range from 1 to 5.

Data Type

string

Default Value

"1"

Remarks

This property defines the level of detail the connector includes in the log file. Higher verbosity levels increase the detail of the logged information, but may also result in larger log files and slower performance due to the additional data being captured.

The default verbosity level is 1, which is recommended for regular operation. Higher verbosity levels are primarily intended for debugging purposes. For more information on each level, refer to Logging.

When combined with the LogModules property, Verbosity can refine logging to specific categories of information.

CData Python Connector for Microsoft Office 365

LogModules

Specifies the core modules to include in the log file. Use a semicolon-separated list of module names. By default, all modules are logged.

Data Type

string

Default Value

""

Remarks

The connector writes details about each operation it performs into the logfile specified by the Logfile connection property.

Each of these logged operations are assigned to a themed category called a module, and each module has a corresponding short code used to labels individual connector operations as belonging to that module.

When this connection property is set to a semicolon-separated list of module codes, only operations belonging to the specified modules are written to the logfile. Note that this only affects which operations are logged moving forward and doesn't retroactively alter the existing contents of the logfile. For example: INFO;EXEC;SSL;META;

By default, logged operations from all modules are included.

You can explicitly exclude a module by prefixing it with a "-". For example: -HTTP

To apply filters to submodules, identify them with the syntax <module name>.<submodule name>. For example, the following value causes the connector to only log actions belonging to the HTTP module, and further refines it to exclude actions belonging to the Res submodule of the HTTP module: HTTP;-HTTP.Res

Note that the logfile filtering triggered by the Verbosity connection property takes precedence over the filtering imposed by this connection property. This means that operations of a higher verbosity level than the level specified in the Verbosity connection property are not printed in the logfile, even if they belong to one of the modules specified in this connection property.

The available modules and submodules are:

Module Name Module Description Submodules
INFO General Information. Includes the connection string, product version (build number), and initial connection messages.
  • Connec – Information related to creating or destroying connections.
  • Messag – Generic label for messages pertaining to connections, the connection string, and product version. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
EXEC Query Execution. Includes execution messages for user-written SQL queries, parsed SQL queries, and normalized SQL queries. Success/failure messages for queries and query pages appear here as well.
  • Messag – Messages pertaining to query execution. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • Normlz – Query normalization steps. Query normalization is when the product takes the user-submitted query and rewrites the query to get the same results with optimal performance.
  • Origin – This label applies to any messages recording a user's original query (the exact, unaltered, non-normalized query executed by the user).
  • Page – Messages related to query paging.
  • Parsed – Query parsing steps. Parsing is the process of converting the user-submitted query into a standardized format for easier processing.
HTTP HTTP protocol messages. Includes HTTP requests/responses (including POST messages), as well as Kerberos related messages.
  • KERB – HTTP requests related to Kerberos.
  • Messag – Messages pertaining to HTTP protocols. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • Unpack – This label applies to messages about zipped data being returned from the service API and unpacked by the product.
  • Res – Messages containing HTTP responses.
  • Req – Messages containing HTTP requests.
WSDL Messages pertaining to the generation of WSDL/XSD files.
SSL SSL certificate messages.
  • Certif – Messages pertaining to SSL certificates.
AUTH Authentication related failure/success messages.
  • Messag – Messages pertaining to authentication. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • OAuth – Messages related to OAuth authentication.
  • Krbros – Kerberos-related authentication messages.
SQL Includes SQL transactions, SQL bulk transfer messages, and SQL result set messages.
  • Bulk – Messages pertaining to bulk query execution.
  • Cache – Messages related to reading row data from and writing row data to the product's cache for better performance.
  • Messag – Messages pertaining to SQL transactions. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • ResSet – Query resultsets.
  • Transc – Messages related to handling transactions, including information about the number of jobs executed and backup table handling.
META Metadata cache and schema messages.
  • Cache – Messages related to reading from and modifying column and table definitions in the product's cache for better performance.
  • Schema – Messages related to retrieving metadata from or modifying the service schema.
  • MemSto – Messages related to writing to or reading from in-memory metadata cache.
  • Storag – Messages relating to storing metadata on disk or in an external data store, rather than in memory.
FUNC Information related to executing SQL functions.
  • Errmsg – Error messages related to executing SQL functions.
TCP Incoming and outgoing raw bytes on TCP transport layer messages.
  • Send – Raw data sent via the TCP protocol.
  • Receiv – Raw data received via the TCP protocol.
FTP Messages pertaining to the File Transfer Protocol.
  • Info – Status messages related to communication in the FTP protocol.
  • Client – Messages related to actions taken by the FTP client (the product) during FTP communication.
  • Server – Messages related to actions taken by the FTP server during FTP communication.
SFTP Messages pertaining to the Secure File Transfer Protocol.
  • Info – Status messages related to communication in the SFTP protocol.
  • To_Server – Messages related to actions taken by the SFTP client (the product) during SFTP communication.
  • From_Server – Messages related to actions taken by the SFTP server during SFTP communication.
POP Messages pertaining to data transferred via the Post Office Protocol.
  • Client – Messages related to actions taken by the POP client (the product) during POP communication.
  • Server – Messages related to actions taken by the POP server during POP communication.
  • Status – Status messages related to communication in the POP protocol.
SMTP Messages pertaining to data transferred via the Simple Mail Transfer Protocol.
  • Client – Messages related to actions taken by the SMTP client (the product) during SMTP communication.
  • Server – Messages related to actions taken by the SMTP server during SMTP communication.
  • Status – Status messages related to communication in the SMTP protocol.
CORE Messages relating to various internal product operations not covered by other modules.
DEMN Messages related to SQL remoting.
CLJB Messages about bulk data uploads (cloud job).
  • Commit – Submissions for bulk data uploads.
SRCE Miscellaneous messages produced by the product that don't belong in any other module.
TRANCE Advanced messages concerning low-level product operations.

CData Python Connector for Microsoft Office 365

MaxLogFileSize

Specifies the maximum size of a single log file in bytes. For example, '10 MB'. When the file reaches the limit, the provider creates a new log file with the date and time appended to the name.

Data Type

string

Default Value

"100MB"

Remarks

For values lower than 100 KB, the connector uses 100 KB as the minimum allowable size.

To control the total number of log files retained, use the MaxLogFileCount property in conjunction with this property. Together, these properties allow you to manage the size and retention of log files effectively.

CData Python Connector for Microsoft Office 365

MaxLogFileCount

Specifies the maximum number of log files the provider retains. When the limit is reached, the oldest log file is deleted to make space for a new one.

Data Type

int

Default Value

-1

Remarks

Each log file name includes the date and time for easier identification.

This property accepts the following values:

  • A value of 2 or higher sets the maximum number of log files retained.
  • A value of 1 retains only one log file. When it reaches the maximum size, the file is deleted and replaced by a new one, leaving no history beyond the current log.
  • A value of 0 or negative indicates no limit on the number of log files, and logging continues indefinitely.

To manage log file size, use the MaxLogFileSize property. The two properties work together to control the size and retention of log files in the logging folder.

CData Python Connector for Microsoft Office 365

Schema

This section provides a complete list of the Schema properties you can configure in the connection string for this provider.


PropertyDescription
LocationSpecifies the location of a directory containing schema files that define tables, views, and stored procedures. Depending on your service's requirements, this may be expressed as either an absolute path or a relative path.
BrowsableSchemasOptional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC .
TablesOptional setting that restricts the tables reported to a subset of all available tables. For example, Tables=TableA,TableB,TableC .
ViewsOptional setting that restricts the views reported to a subset of the available tables. For example, Views=ViewA,ViewB,ViewC .
CData Python Connector for Microsoft Office 365

Location

Specifies the location of a directory containing schema files that define tables, views, and stored procedures. Depending on your service's requirements, this may be expressed as either an absolute path or a relative path.

Data Type

string

Default Value

"%APPDATA%\\CData\\Office365 Data Provider\\Schema"

Remarks

The Location property is only needed if you want to either customize definitions (for example, change a column name, ignore a column, etc.) or extend the data model with new tables, views, or stored procedures.

If left unspecified, the default location is %APPDATA%\\CData\\Office365 Data Provider\\Schema, where %APPDATA% is set to the user's configuration directory:

Platform %APPDATA%
Windows The value of the APPDATA environment variable
Linux ~/.config

CData Python Connector for Microsoft Office 365

BrowsableSchemas

Optional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC .

Data Type

string

Default Value

""

Remarks

Listing all available database schemas can take extra time, thus degrading performance. Providing a list of schemas in the connection string saves time and improves performance.

CData Python Connector for Microsoft Office 365

Tables

Optional setting that restricts the tables reported to a subset of all available tables. For example, Tables=TableA,TableB,TableC .

Data Type

string

Default Value

""

Remarks

Listing all available tables from some databases can take extra time, thus degrading performance. Providing a list of tables in the connection string saves time and improves performance.

If there are lots of tables available and you already know which ones you want to work with, you can use this property to restrict your viewing to only those tables. To do this, specify the tables you want in a comma-separated list. Each table should be a valid SQL identifier with any special characters escaped using square brackets, double-quotes or backticks. For example, Tables=TableA,[TableB/WithSlash],WithCatalog.WithSchema.`TableC With Space`.

Note: If you are connecting to a data source with multiple schemas or catalogs, you must specify each table you want to view by its fully qualified name. This avoids ambiguity between tables that may exist in multiple catalogs or schemas.

CData Python Connector for Microsoft Office 365

Views

Optional setting that restricts the views reported to a subset of the available tables. For example, Views=ViewA,ViewB,ViewC .

Data Type

string

Default Value

""

Remarks

Listing all available views from some databases can take extra time, thus degrading performance. Providing a list of views in the connection string saves time and improves performance.

If there are lots of views available and you already know which ones you want to work with, you can use this property to restrict your viewing to only those views. To do this, specify the views you want in a comma-separated list. Each view should be a valid SQL identifier with any special characters escaped using square brackets, double-quotes or backticks. For example, Views=ViewA,[ViewB/WithSlash],WithCatalog.WithSchema.`ViewC With Space`.

Note: If you are connecting to a data source with multiple schemas or catalogs, you must specify each view you want to examine by its fully qualified name. This avoids ambiguity between views that may exist in multiple catalogs or schemas.

CData Python Connector for Microsoft Office 365

Caching

This section provides a complete list of the Caching properties you can configure in the connection string for this provider.


PropertyDescription
AutoCacheSpecifies whether the content of tables targeted by SELECT queries is automatically cached to the specified cache database.
CacheProviderThe namespace of an ADO.NET provider. The specified provider is used as the target database for all caching operations.
CacheDriverThe driver class of a JDBC driver. The specified driver is used to connect to the target database for all caching operations.
CacheConnectionSpecifies the connection string for the specified cache database.
CacheLocationSpecifies the path to the cache when caching to a file.
CacheToleranceNotes the tolerance, in seconds, for stale data in the specified cache database. Requires AutoCache to be set to True.
OfflineGets the data from the specified cache database instead of live Microsoft Office 365 data.
CacheMetadataDetermines whether the provider caches table metadata to a file-based cache database.
CData Python Connector for Microsoft Office 365

AutoCache

Specifies whether the content of tables targeted by SELECT queries is automatically cached to the specified cache database.

Data Type

bool

Default Value

false

Remarks

When this connection property is set to True, the connector automatically caches the contents of tables targeted by SELECT queries. The content of these tables is cached to the cache database specified by the CacheConnection and CacheProvider connection properties.

See Also

For additional information, see:

  • CacheMetadata: With CacheMetadata enabled, all retrieved metadata is mirrored in the cache database. This means that any subsequent attempts by the connector to discover metadata are much faster, as this metadata is then read directly from the cache database, without needing to spend time requesting metadata from Microsoft Office 365.
  • Explicitly Caching Data: This topic provides examples for using AutoCache in Offline mode.
  • CACHE Statements: You can use the CACHE statement to explicitly cache the content of any table targeted by a SELECT query.

CData Python Connector for Microsoft Office 365

CacheProvider

The namespace of an ADO.NET provider. The specified provider is used as the target database for all caching operations.

Data Type

string

Default Value

""

Remarks

You can cache to ADO.NET providers saved in your ADO.NET global assembly cache (GAC).

CData ADO.NET providers automatically register themselves with the GAC during installation, so you don't need to do so manually.

Third-party ADO.NET providers may or may not automatically register themselves with the GAC during installation. If you want to cache to a third-party ADO.NET provider, consult the documentation for that provider to determine what steps (if any) you must take to register them with the GAC. Once they have been registered, you can supply their namespace in this connection property.

You must also set the CacheConnection connection property to provide a connection string for the specified ADO.NET provider.

The following sections show connection examples and address other requirements for several popular database providers. Refer to CacheConnection for more information on typical connection properties.

SQLite

You can use the Microsoft ADO.NET Provider for SQLite to cache to SQLite databases.

CacheProvider=Microsoft.Data.Sqlite;CacheConnection='DataSource=C:\\Users\\Public\\cache.db;'InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;

MySQL

To cache to MySQL, you can use the CData ADO.NET Provider for MySQL:
Cache Provider=System.Data.CData.MySQL;Cache Connection='Server=localhost;Port=3306;Database=cache;User=root;Password=123456';User=myUser;Password=myPassword;Security Token=myToken;

SQL Server

You can use the Microsoft .NET Framework Provider for SQL Server, included in the .NET Framework, to cache to SQL Server:

Cache Provider=System.Data.SqlClient;Cache Connection="Server=MyMACHINE\MyInstance;Database=SQLCACHE;User Id=root;Password=admin";InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;

Oracle

To cache to Oracle, you can use the Oracle Data Provider for .NET, as shown in the following example:

Cache Provider=Oracle.DataAccess.Client;Cache Connection='User Id=scott;Password=tiger;Data Source=ORCL';InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;

The Oracle Data Provider for .NET also requires the Oracle Database Client. When you download the Oracle Database Client, ensure that its bitness matches the bitness of your machine. When you install, select either the Runtime or Administrator installation type. The Instant Client is not sufficient.

PostgreSQL

To cache to PostgreSQL, you can use the CData ADO.NET Provider for PostgreSQL:
Cache Provider=System.Data.CData.PostgreSQL;Cache Connection='Server=localhost;Port=5432;Database=cache;User=postgres;Password=123456';User=myUser;Password=myPassword;Security Token=myToken;

CData Python Connector for Microsoft Office 365

CacheDriver

The driver class of a JDBC driver. The specified driver is used to connect to the target database for all caching operations.

Data Type

string

Default Value

""

Remarks

You can cache to any database for which you have a JDBC driver, including CData JDBC drivers.

Note: You must add the JAR file of the specified JDBC driver to the classpath. For CData JDBC drivers, you can find this JAR file in the "lib" subfolder of that driver's installation directory.

You must also set the CacheConnection connection property to provide a connection string for the specified JDBC driver.

For Linux systems and macOS, you need to create a config.ini file on the installation path of the driver (site-packages/cdata). The config.ini file has the following format (the driver and the path of the JDBC driver):

[salesforce.cpython-38-x86_64-linux-gnu.so]
CLASSPATH = /home/usrname/Downloads/lib/cdata.jdbc.postgresql.jar

Examples

The following examples show how to cache to several major databases. For more information on the JDBC URL syntax and typical connection properties, see CacheConnection.

Derby and Java DB

Java DB is the Oracle distribution of Derby. You must add the Derby JDBC driver's JAR file, derbytools.jar, to your classpath to cache to Java DB.

The Derby JDBC driver's JAR file is bundled in db-derby-10.17.1.0-bin.zip, which you can download from this page. You can find derbytools.jar in the "lib" subfolder of this zip file.

After adding derbytools.jar to the classpath, you can cache to a Java DB database as follows:

jdbc:office365:CacheDriver=org.apache.derby.jdbc.EmbeddedDriver;CacheConnection='jdbc:derby:sample';InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;
To cache to an in-memory database, use a JDBC URL like the following:
jdbc:office365:CacheDriver=org.apache.derby.jdbc.EmbeddedDriver;CacheConnection='jdbc:derby:memory';InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;

SQLite

The following is a JDBC URL for the SQLite JDBC driver:

jdbc:office365:CacheDriver=org.sqlite.JDBC;CacheConnection='jdbc:sqlite:C:/Temp/sqlite.db';InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;

MySQL

The following is a JDBC URL for the CData JDBC Driver for MySQL:

  jdbc:office365:Cache Driver=cdata.jdbc.mysql.MySQLDriver;Cache Connection='jdbc:mysql:Server=localhost;Port=3306;Database=cache;User=root;Password=123456';InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;
  

SQL Server

The following JDBC URL uses the Microsoft JDBC Driver for SQL Server:

jdbc:office365:Cache Driver=com.microsoft.sqlserver.jdbc.SQLServerDriver;Cache Connection='jdbc:sqlserver://localhost\sqlexpress:7437;user=sa;password=123456;databaseName=Cache';InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;

Oracle

The following is a JDBC URL for the Oracle Thin Client:

jdbc:office365:Cache Driver=oracle.jdbc.OracleDriver;CacheConnection='jdbc:oracle:thin:scott/tiger@localhost:1521:orcldb';InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;
NOTE: If using a version of Oracle older than 9i, the cache driver will instead be oracle.jdbc.driver.OracleDriver .

PostgreSQL

The following JDBC URL uses the official PostgreSQL JDBC driver:

jdbc:office365:CacheDriver=cdata.jdbc.postgresql.PostgreSQLDriver;CacheConnection='jdbc:postgresql:User=postgres;Password=admin;Database=postgres;Server=localhost;Port=5432;';InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;

CData Python Connector for Microsoft Office 365

CacheConnection

Specifies the connection string for the specified cache database.

Data Type

string

Default Value

""

Remarks

The target cache database is determined by a combination of this connection property and the CacheProvider connection property. Both properties are required to use the specified cache database.

The connection string specified in this connection property is passed directly to the specified in the CacheProvider connection property. Consult the documentation for the specified for more information on its available connection properties.

Examples of common cache database settings can be found below.

SQLite

MySQL

The following are typical connection properties:

  • Server: The IP address or domain name of the server hosting the MySQL database that you want to cache to.
  • Port: The port on the specified server where your MySQL instance is running.
  • Database: The name of the MySQL database that you want to cache to. Must match the name of a MySQL database hosted on the specified server.
  • User: The username of a user registered with the selected MySQL database.
  • Password: The password associated with the specified MySQL user.

SQL Server

The following are typical SQL Server connection properties:

  • Server: The name or network address of the computer running SQL Server. To connect to a named instance instead of the default instance, specify the host name and the instance name, separated by a backslash.
  • Port: The port on the specified server where your SQL Server instance is running.
  • Database: The name of the SQL Server database you want to cache to. Must match the name of a SQL Server database hosted on the specified server.
  • Integrated Security: To use the current Windows account for authentication, set this option to True. To authenticate with User and Password instead, set this option to False.
  • User Id: The username of a user registered with the selected SQL Server database. This property is only needed if you are not using integrated security.
  • Password: The password associated with the specified SQL Server user. This property is only needed if you are not using integrated security.

Oracle

The following are typical connection properties:

  • Data Source: The connect descriptor that identifies the Oracle database. This can be a TNS connect descriptor, an Oracle Net Services name that resolves to a connect descriptor, or, after version 11g, an Easy Connect naming (the host name of the Oracle server with an optional port and service name).

  • User Id: The username of a user registered with the selected Oracle database.
  • Password: The password associated with the specified Oracle user.

PostgreSQL

The following are typical connection properties:

  • Host: The address of the server hosting the PostgreSQL database.
  • Port: The port on the specified host server where your PostgreSQL database is hosted.
  • Database: The name of the PostgreSQL database you want to cache to. Must match the name of a PostgreSQL database hosted on the specified server.
  • User name: The username of a user registered with the selected PostgreSQL database.
  • Password: The password associated with the specified user.

CData Python Connector for Microsoft Office 365

CacheLocation

Specifies the path to the cache when caching to a file.

Data Type

string

Default Value

"%APPDATA%\\CData\\Office365 Data Provider"

Remarks

The CacheLocation is a simple, file-based cache.

If left unspecified, the default location is %APPDATA%\\CData\\Office365 Data Provider, where %APPDATA% is set to the user's configuration directory:

Platform %APPDATA%
Windows The value of the APPDATA environment variable
Linux ~/.config

See Also

  • AutoCache: Set to implicitly create and maintain a cache for later offline use.
  • CacheMetadata: Set to persist the Microsoft Office 365 catalog in CacheLocation.

CData Python Connector for Microsoft Office 365

CacheTolerance

Notes the tolerance, in seconds, for stale data in the specified cache database. Requires AutoCache to be set to True.

Data Type

int

Default Value

600

Remarks

When you execute a query for tables in the cache, the connector checks the time elapsed since the last update to the cache.

If the last update to the cache is older than the value of this connection property (measured in seconds), the connector refreshes the cache.

Otherwise, the connector returns data directly from the cache.

CData Python Connector for Microsoft Office 365

Offline

Gets the data from the specified cache database instead of live Microsoft Office 365 data.

Data Type

bool

Default Value

false

Remarks

When this connection property is set to True, all queries execute against the cache database instead of the live Microsoft Office 365 data.

In this mode, some SQL operations like INSERT, UPDATE, DELETE, and CACHE are disabled.

CData Python Connector for Microsoft Office 365

CacheMetadata

Determines whether the provider caches table metadata to a file-based cache database.

Data Type

bool

Default Value

false

Remarks

When this connection property is set to True, as you execute queries, table metadata in the Microsoft Office 365 catalog is cached to the cache database specified by CacheConnection and CacheProvider, or, if those connection properties are not set, to the user's home directory.

The location of your home directory varies by platform:

PlatformHome Directory
Windows %APPDATA%\\CData\\Office365 Data Provider
Mac ~/Library/Application Support/CData/Office365 Data Provider
Unix ~/.config/CData/Office365 Data Provider

A table's metadata is retrieved only once, when the table is queried for the first time.

When to Use CacheMetadata

When there are a large number of Microsoft Office 365 tables and columns for the connector to retrieve during metadata discovery, the connector may take a while to list all table metadata.

You may experience slow metadata retrieval when:

  • Your Microsoft Office 365 instance naturally has a large table count.
  • The connector has been configured, via its connection properties, to discover more tables than it would under its default configuration.
  • You make many short-lived connections to the connector.
With CacheMetadata enabled, all retrieved metadata is mirrored in the cache database. This means that any subsequent attempts by the connector to discover metadata are much faster, as this metadata is then read directly from the cache database, without needing to spend time requesting metadata from Microsoft Office 365.

When Not to Use CacheMetadata

The connector automatically persists metadata in memory for up to an hour when you first discover the metadata for a table or view, so CacheMetadata is generally not necessary.

CacheMetadata is not ideal in scenarios where you are working with volatile metadata. The first time you query a table, the connector caches its metadata to the cache database file. This cache is not dynamically updated to reflect updates to the table schema, so you must delete and rebuild the cache database file to pick up new, changed, or deleted columns.

CData Python Connector for Microsoft Office 365

Miscellaneous

This section provides a complete list of the Miscellaneous properties you can configure in the connection string for this provider.


PropertyDescription
DefaultGroupsDetermines the default group context when accessing group-scoped resources in Microsoft Office 365.
DefaultUserDetermines the default user context when accessing user-scoped resources in Microsoft Office 365.
DirectoryRetrievalDepthSpecifies how far down in a Files table's subdirectories should be scanned to retrieve results. If DirectoryRetrievalDepth is not explicitly set, the driver uses a depth of 5 sublevels below the root (default).
GroupIdSpecifies the Id of a Microsoft Office 365 group whose data you want to access.
MaxRowsSpecifies the maximum number of rows returned for queries that do not include either aggregation or GROUP BY.
MessageContentTypeDetermines whether to return messages as in html format or as text.
OtherSpecifies advanced connection properties for specialized scenarios. Use this property only under the guidance of our Support team to address specific issues.
PagesizeSpecifies the maximum number of records per page the provider returns when requesting data from Microsoft Office 365.
PseudoColumnsSpecifies the pseudocolumns to expose as table columns, expressed as a string in the format 'TableName=ColumnName;TableName=ColumnName'.
ReadonlyToggles read-only access to Microsoft Office 365 from the provider.
RTKSpecifies the runtime key for licensing the provider. If unset or invalid, the provider defaults to the standard licensing method. This property is only required in environments where the standard licensing method is unsupported or requires a runtime key.
TimeoutSpecifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error.
UseClientSidePagingToggles the CData ADO.NET Provider for Microsoft Office 365's use of client side paging.
UserDefinedViewsSpecifies a filepath to a JSON configuration file that defines custom views. The provider automatically detects and uses the views specified in this file.
UserIdSpecifies the Id of a Microsoft Office 365 user whose data you want to access.
CData Python Connector for Microsoft Office 365

DefaultGroups

Determines the default group context when accessing group-scoped resources in Microsoft Office 365.

Possible Values

AllGroups, CurrentUser

Data Type

string

Default Value

"CurrentUser"

Remarks

Use this property to specify which group's data to access when querying group-associated data.

Note that the GroupId property takes priority over this property. If GroupId is set, this property is ignored.

Supported values are:

  • CurrentUser: Scopes data access to groups the currently authenticated user belongs to.
  • AllGroups: Accesses data for every group in the domain. Used only when you are authenticated as a service.

CData Python Connector for Microsoft Office 365

DefaultUser

Determines the default user context when accessing user-scoped resources in Microsoft Office 365.

Possible Values

AllUsers, CurrentUser

Data Type

string

Default Value

"CurrentUser"

Remarks

Use this property to specify which user's data to access when querying user-associated data.

Note that the UserId property takes priority over this property. If UserId is set, this property is ignored.

Supported values are:

  • CurrentUser: Scopes data access to the currently authenticated user.
  • AllUsers: Accesses data for every user in the domain. Used only when you are authenticated as a service.

CData Python Connector for Microsoft Office 365

DirectoryRetrievalDepth

Specifies how far down in a Files table's subdirectories should be scanned to retrieve results. If DirectoryRetrievalDepth is not explicitly set, the driver uses a depth of 5 sublevels below the root (default).

Data Type

string

Default Value

"5"

Remarks

To scan only resources located in the root, specify 0.

To get all the data in a drive regardless of what depth it's located in, specify a value of -1.

CData Python Connector for Microsoft Office 365

GroupId

Specifies the Id of a Microsoft Office 365 group whose data you want to access.

Data Type

string

Default Value

""

Remarks

When set, data access is scoped to a specified group. To retrieve a list of available group Ids, query the Groups view.

This property takes priority over the DefaultGroups property when specified. Note that if UserId is also set, it takes precedence over this property.

CData Python Connector for Microsoft Office 365

MaxRows

Specifies the maximum number of rows returned for queries that do not include either aggregation or GROUP BY.

Data Type

int

Default Value

-1

Remarks

The default value for this property, -1, means that no row limit is enforced unless the query explicitly includes a LIMIT clause. (When a query includes a LIMIT clause, the value specified in the query takes precedence over the MaxRows setting.)

Setting MaxRows to a whole number greater than 0 ensures that queries do not return excessively large result sets by default.

This property is useful for optimizing performance and preventing excessive resource consumption when executing queries that could otherwise return very large datasets.

CData Python Connector for Microsoft Office 365

MessageContentType

Determines whether to return messages as in html format or as text.

Possible Values

html, text

Data Type

string

Default Value

"html"

Remarks

Determines whether to return messages as in html format or as text.

Supported values are:

  • html: Messages are returned in html format.
  • text: Messages are returned as text.

CData Python Connector for Microsoft Office 365

Other

Specifies advanced connection properties for specialized scenarios. Use this property only under the guidance of our Support team to address specific issues.

Data Type

string

Default Value

""

Remarks

This property allows advanced users to configure hidden properties for specialized situations, with the advice of our Support team. These settings are not required for normal use cases but can address unique requirements or provide additional functionality. To define multiple properties, use a semicolon-separated list.

Note: It is strongly recommended to set these properties only when advised by the Support team to address specific scenarios or issues.

Caching Configuration

PropertyDescription
CachePartial=TrueCaches only a subset of columns, which you can specify in your query.
QueryPassthrough=TruePasses the specified query to the cache database instead of using the SQL parser of the connector.

Integration and Formatting

PropertyDescription
DefaultColumnSizeSets the default length of string fields when the data source does not provide column length in the metadata. The default value is 2000.
ConvertDateTimeToGMT=TrueConverts date-time values to GMT, instead of the local time of the machine. The default value is False (use local time).
RecordToFile=filenameRecords the underlying socket data transfer to the specified file.

CData Python Connector for Microsoft Office 365

Pagesize

Specifies the maximum number of records per page the provider returns when requesting data from Microsoft Office 365.

Data Type

int

Default Value

300

Remarks

When processing a query, instead of requesting all of the queried data at once from Microsoft Office 365, the connector can request the queried data in pieces called pages.

This connection property determines the maximum number of results that the connector requests per page.

Note: Setting large page sizes may improve overall query execution time, but doing so causes the connector to use more memory when executing queries and risks triggering a timeout.

CData Python Connector for Microsoft Office 365

PseudoColumns

Specifies the pseudocolumns to expose as table columns, expressed as a string in the format 'TableName=ColumnName;TableName=ColumnName'.

Data Type

string

Default Value

""

Remarks

This property allows you to define which pseudocolumns the connector exposes as table columns.

To specify individual pseudocolumns, use the following format:

Table1=Column1;Table1=Column2;Table2=Column3

To include all pseudocolumns for all tables use:

*=*

CData Python Connector for Microsoft Office 365

Readonly

Toggles read-only access to Microsoft Office 365 from the provider.

Data Type

bool

Default Value

false

Remarks

When set to True, the connector allows only SELECT queries. Attempting an INSERT, UPDATE, DELETE, or stored procedure query fails with an error message.

CData Python Connector for Microsoft Office 365

RTK

Specifies the runtime key for licensing the provider. If unset or invalid, the provider defaults to the standard licensing method. This property is only required in environments where the standard licensing method is unsupported or requires a runtime key.

Data Type

string

Default Value

""

Remarks

This property is typically unnecessary, as most configurations support a standard licensing mechanism.

Warning: The value of this property takes precedence over all existing licensing information. To avoid licensing errors, ensure the provided runtime key is correct.

CData Python Connector for Microsoft Office 365

Timeout

Specifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error.

Data Type

int

Default Value

60

Remarks

The timeout applies to each individual communication with the server rather than the entire query or operation. For example, a query could continue running beyond 60 seconds if each paging call completes within the timeout limit.

Timeout is set to 60 seconds by default. To disable timeouts, set this property to 0.

Disabling the timeout allows operations to run indefinitely until they succeed or fail due to other conditions such as server-side timeouts, network interruptions, or resource limits on the server.

Note: Use this property cautiously to avoid long-running operations that could degrade performance or result in unresponsive behavior.

CData Python Connector for Microsoft Office 365

UseClientSidePaging

Toggles the CData ADO.NET Provider for Microsoft Office 365's use of client side paging.

Data Type

bool

Default Value

true

Remarks

If your source does not support server side paging, leave UseClientSidePaging set to True (default).

If your source supports server side paging, set UseClientSidePaging to False.

Note: Setting UseClientSidePaging to True on a source that already supports paging can cause incomplete results.

CData Python Connector for Microsoft Office 365

UserDefinedViews

Specifies a filepath to a JSON configuration file that defines custom views. The provider automatically detects and uses the views specified in this file.

Data Type

string

Default Value

""

Remarks

UserDefinedViews allows you to define and manage custom views through a JSON-formatted configuration file called UserDefinedViews.json. These views are automatically recognized by the connector and enable you to execute custom SQL queries as if they were standard database views. The JSON file defines each view as a root element with a child element called "query", which contains the SQL query for the view.

For example:

{
	"MyView": {
		"query": "SELECT * FROM Events WHERE MyColumn = 'value'"
	},
	"MyView2": {
		"query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)"
	}
}

You can use this property to define multiple views in a single file and specify the filepath. For example:

UserDefinedViews=C:\Path\To\UserDefinedViews.json
When you specify a view in UserDefinedViews, the connector only sees that view.

For further information, see User Defined Views.

CData Python Connector for Microsoft Office 365

UserId

Specifies the Id of a Microsoft Office 365 user whose data you want to access.

Data Type

string

Default Value

""

Remarks

The dummy property for PowerBI.

When set, data access is scoped to a specified user. To retrieve a list of available user Ids, query the Users view.

This property takes priority over the DefaultUser property when specified. In addition, if both UserId and GroupId are set, UserId takes precedence and GroupId is ignored.

CData Python Connector for Microsoft Office 365

Third Party Copyrights

LZMA from 7Zip LZMA SDK

LZMA SDK is placed in the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original LZMA SDK code, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

LZMA2 from XZ SDK

Version 1.9 and older are in the public domain.

Xamarin.Forms

Xamarin SDK

The MIT License (MIT)

Copyright (c) .NET Foundation Contributors

All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

NSIS 3.10

Copyright (C) 1999-2025 Contributors THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.

1. DEFINITIONS

"Contribution" means:

a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and b) in the case of each subsequent Contributor:

i) changes to the Program, and

ii) additions to the Program;

where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.

"Contributor" means any person or entity that distributes the Program.

"Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.

"Program" means the Contributions distributed in accordance with this Agreement.

"Recipient" means anyone who receives the Program under this Agreement, including all Contributors.

2. GRANT OF RIGHTS

a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.

b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.

c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.

d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.

3. REQUIREMENTS

A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:

a) it complies with the terms and conditions of this Agreement; and

b) its license agreement:

i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;

ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;

iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and

iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.

When the Program is made available in source code form:

a) it must be made available under this Agreement; and

b) a copy of this Agreement must be included with each copy of the Program.

Contributors may not remove or alter any copyright notices contained within the Program.

Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.

4. COMMERCIAL DISTRIBUTION

Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.

For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.

5. NO WARRANTY

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.

6. DISCLAIMER OF LIABILITY

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

7. GENERAL

If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.

If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.

All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.

Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.

This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.

AdoptOpenJDK / Adoptium Temurin JRE 17.0.18_8

Copyright (c) Eclipse Foundation AISBL. All Rights Reserved.

Apache License, Version 2.0

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.

"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.

"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.

"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.

"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.

"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.

"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).

"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.

"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."

"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.

2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.

3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.

4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:

  1. You must give any other recipients of the Work or Derivative Works a copy of this License; and
  2. You must cause any modified files to carry prominent notices stating that You changed the files; and
  3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
  4. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.

5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.

6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.

7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.

8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.

9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.

END OF TERMS AND CONDITIONS

Eclipse Distribution License - v 1.0

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  • Neither the name of the Eclipse Foundation, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Eclipse Public License - v 2.0

THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.

1. DEFINITIONS "Contribution" means:

  • a) in the case of the initial Contributor, the initial content Distributed under this Agreement, and
  • b) in the case of each subsequent Contributor:
    • i) changes to the Program, and
    • ii) additions to the Program;
    where such changes and/or additions to the Program originate from and are Distributed by that particular Contributor. A Contribution "originates" from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include changes or additions to the Program that are not Modified Works.
"Contributor" means any person or entity that Distributes the Program. "Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.

"Program" means the Contributions Distributed in accordance with this Agreement.

"Recipient" means anyone who receives the Program under this Agreement or any Secondary License (as applicable), including Contributors.

"Derivative Works" shall mean any work, whether in Source Code or other form, that is based on (or derived from) the Program and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship.

"Modified Works" shall mean any work in Source Code or other form that results from an addition to, deletion from, or modification of the contents of the Program, including, for purposes of clarity any new file in Source Code form that contains any contents of the Program. Modified Works shall not include works that contain only declarations, interfaces, types, classes, structures, or files of the Program solely in each case in order to link to, bind by name, or subclass the Program or Modified Works thereof.

"Distribute" means the acts of a) distributing or b) making available in any manner that enables the transfer of a copy.

"Source Code" means the form of a Program preferred for making modifications, including but not limited to software source code, documentation source, and configuration files.

"Secondary License" means either the GNU General Public License, Version 2.0, or any later versions of that license, including any exceptions or additional permissions as identified by the initial Contributor.

2. GRANT OF RIGHTS

  • a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, Distribute and sublicense the Contribution of such Contributor, if any, and such Derivative Works.
  • b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in Source Code or other form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.
  • c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to Distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.
  • d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.
  • e) Notwithstanding the terms of any Secondary License, no Contributor makes additional grants to any Recipient (other than those set forth in this Agreement) as a result of such Recipient's receipt of the Program under the terms of a Secondary License (if permitted under the terms of Section 3).

3. REQUIREMENTS 3.1 If a Contributor Distributes the Program in any form, then:

  • a) the Program must also be made available as Source Code, in accordance with section 3.2, and the Contributor must accompany the Program with a statement that the Source Code for the Program is available under this Agreement, and informs Recipients how to obtain it in a reasonable manner on or through a medium customarily used for software exchange; and
  • b) the Contributor may Distribute the Program under a license different than this Agreement, provided that such license:
    • i) effectively disclaims on behalf of all other Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;
    • ii) effectively excludes on behalf of all other Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;
    • iii) does not attempt to limit or alter the recipients' rights in the Source Code under section 3.2; and
    • iv) requires any subsequent distribution of the Program by any party to be under a license that satisfies the requirements of this section 3.
3.2 When the Program is Distributed as Source Code:
  • a) it must be made available under this Agreement, or if the Program (i) is combined with other material in a separate file or files made available under a Secondary License, and (ii) the initial Contributor attached to the Source Code the notice described in Exhibit A of this Agreement, then the Program may be made available under the terms of such Secondary Licenses, and
  • b) a copy of this Agreement must be included with each copy of the Program.
3.3 Contributors may not remove or alter any copyright, patent, trademark, attribution notices, disclaimers of warranty, or limitations of liability (‘notices') contained within the Program from any copy of the Program which they Distribute, provided that Contributors may add their own appropriate notices.

4. COMMERCIAL DISTRIBUTION Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.

For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.

5. NO WARRANTY EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.

6. DISCLAIMER OF LIABILITY EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

7. GENERAL If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.

If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.

All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.

Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be Distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to Distribute the Program (including its Contributions) under the new version.

Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. Nothing in this Agreement is intended to be enforceable by any entity that is not a Contributor or Recipient. No third-party beneficiary rights are created under this Agreement.

Exhibit A – Form of Secondary Licenses Notice "This Source Code may also be made available under the following Secondary Licenses when the conditions for such availability set forth in the Eclipse Public License, v. 2.0 are satisfied: {name license(s), version(s), and exceptions or additional permissions here}."

Simply including a copy of this Agreement, including this Exhibit A is not sufficient to license the Source Code under Secondary Licenses.

If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice.

You may add additional accurate notices of copyright ownership.

GNU Classpath

Classpath is distributed under the terms of the GNU General Public License with the following clarification and special exception.

Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination.

As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.

As such, it can be used to run, create and distribute a large class of applications and applets. When GNU Classpath is used unmodified as the core class library for a virtual machine, compiler for the java languge, or for a program written in the java programming language it does not affect the licensing for distributing those programs directly.

OpenJDK Assembly Exception

The OpenJDK source code made available by Oracle America, Inc. (Oracle) at openjdk.java.net ("OpenJDK Code") is distributed under the terms of the GNU General Public License <http://www.gnu.org/copyleft/gpl.html> version 2 only ("GPL2"), with the following clarification and special exception.

Linking this OpenJDK Code statically or dynamically with other code is making a combined work based on this library. Thus, the terms and conditions of GPL2 cover the whole combination.

As a special exception, Oracle gives you permission to link this OpenJDK Code with certain code licensed by Oracle as indicated at http://openjdk.java.net/legal/exception-modules-2007-05-08.html ("Designated Exception Modules") to produce an executable, regardless of the license terms of the Designated Exception Modules, and to copy and distribute the resulting executable under GPL2, provided that the Designated Exception Modules continue to be governed by the licenses under which they were offered by Oracle.

As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code to build an executable that includes those portions of necessary code that Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 with the Classpath exception). If you modify or add to the OpenJDK code, that new GPL2 code may still be combined with Designated Exception Modules if the new code is made subject to this exception by its copyright holder.

Copyright (c) 2026 CData Software, Inc. - All rights reserved.
Build 26.0.9655