Discover how a bimodal integration strategy can address the major data management challenges facing your organization today.
Get the Report →Use the CData ODBC Driver for Bitbucket in SAS JMP
You can use the CData ODBC Driver to integrate Bitbucket data into the statistical analysis tools available in SAS JMP. This article shows how to use Bitbucket data in the Graph Builder and Query Builder.
You can use the CData ODBC Driver for Bitbucket to integrate live data into your statistical analysis with SAS JMP. The driver proxies your queries directly to the Bitbucket API, ensuring that your analysis reflects any changes to the data. The CData ODBC Driver supports the standard SQL used by JMP in the background as you design reports.
The Bitbucket API supports bidirectional access. This article shows how to access Bitbucket data into a report and create data visualization. It also shows how to use SQL to query and manipulate Bitbucket data from the JMP Query Builder.
Access Bitbucket Data as an ODBC Data Source
If you have not already, first specify connection properties in an ODBC DSN (data source name). This is the last step of the driver installation. You can use the Microsoft ODBC Data Source Administrator to create and configure ODBC DSNs.
For most queries, you must set the Workspace. The only exception to this is the Workspaces table, which does not require this property to be set, as querying it provides a list of workspace slugs that can be used to set Workspace. To query this table, you must set Schema to 'Information' and execute the query SELECT * FROM Workspaces>.
Setting Schema to 'Information' displays general information. To connect to Bitbucket, set these parameters:
- Schema: To show general information about a workspace, such as its users, repositories, and projects, set this to Information. Otherwise, set this to the schema of the repository or project you are querying. To get a full set of available schemas, query the sys_schemas table.
- Workspace: Required if you are not querying the Workspaces table. This property is not required for querying the Workspaces table, as that query only returns a list of workspace slugs that can be used to set Workspace.
Authenticating to Bitbucket
Bitbucket supports OAuth authentication only. To enable this authentication from all OAuth flows, you must create a custom OAuth application, and set AuthScheme to OAuth.
Be sure to review the Help documentation for the required connection properties for you specific authentication needs (desktop applications, web applications, and headless machines).
Creating a custom OAuth application
From your Bitbucket account:
- Go to Settings (the gear icon) and select Workspace Settings.
- In the Apps and Features section, select OAuth Consumers.
- Click Add Consumer.
- Enter a name and description for your custom application.
- Set the callback URL:
- For desktop applications and headless machines, use http://localhost:33333 or another port number of your choice. The URI you set here becomes the CallbackURL property.
- For web applications, set the callback URL to a trusted redirect URL. This URL is the web location the user returns to with the token that verifies that your application has been granted access.
- If you plan to use client credentials to authenticate, you must select This is a private consumer. In the driver, you must set AuthScheme to client.
- Select which permissions to give your OAuth application. These determine what data you can read and write with it.
- To save the new custom application, click Save.
- After the application has been saved, you can select it to view its settings. The application's Key and Secret are displayed. Record these for future use. You will use the Key to set the OAuthClientId and the Secret to set the OAuthClientSecret.
When you configure the DSN, you may also want to set the Max Rows connection property. This will limit the number of rows returned, which is especially helpful for improving performance when designing reports and visualizations.
Import Bitbucket Data with the Query Builder
After you have created the Bitbucket DSN, you can use SQL to invoke the capabilities of the Bitbucket API. Follow the steps below to execute some supported queries in the Query Builder:
- In SAS JMP, click File -> Database -> Query Builder. The Select Database Connection dialog is displayed.
- Click New Connection.
- On the Machine Data Source tab, select the DSN. In the next step, the Select Tables for Query dialog is displayed.
- In the Available Tables section, select a table and click Primary.
- As you drag Available Columns to the Included Columns tab, the underlying SQL query is updated.
- Click Run Query to display the data.
- To refresh the results with the current data, right-click Update from Database and click Run Script.
Manipulate Bitbucket Data
You can execute data manipulation queries from JSL scripts such as the one below. To execute a script, click New Script in the toolbar. To connect, specify the DSN. You can then use the standard SQL syntax:
Open Database( "DSN=CData Bitbucket Source;",
"INSERT INTO Issues
(Id)
VALUES ('1');");
Visualize Bitbucket Data
After importing, you can use the Graph Builder to create graphs visually. To open the Graph Builder, click the Graph Builder button in the toolbar.
- Drag a dimension column onto the x axis. For example, Title.
- Drag a measure column onto the y axis. For example, ContentRaw.
- Select a chart type. For example, a bar chart.