Enable everyone in your organization to access their data in the cloud — no code required.
Learn More →Build a Simple VCL Application for Asana Data
How to build a simple VCL Application to view Asana data in RAD Studio using the CData FireDAC Components for Asana.
Embarcadero RAD Studio provides a development environment for Delphi and C++Builder applications. With the CData FireDAC Components for Asana, you gain access to live Asana data within RAD Studio, abstracting the data into tables, views, and stored procedures that can be used to retrieve Asana data. This article will walk through connecting to Asana and creating a simple VCL application with the Form Designer.
Creating a VCL Application for Asana Data
The following instructions show how to use the Form Designer to create a simple VCL Forms application that shows the basic FireDAC objects needed to connect to Asana from any application.
The following example populates a TDBGrid control.
- Create a new VCL Forms Application.
- Drop a TFDPhysAsanaDriverLink and TFDConnection object onto the form.
Double-click the TFDConnection object. The FireDAC Connection Editor is displayed. Select "CData.Asana" in the DriverId menu and configure the connection properties.
You can optionally set the following to refine the data returned from Asana.
- WorkspaceId: Set this to the globally unique identifier (gid) associated with your Asana Workspace to only return projects from the specified workspace. To get your workspace id, navigate to https://app.asana.com/api/1.0/workspaces while logged into Asana. This displays a JSON object containing your workspace name and Id.
- ProjectId: Set this to the globally unique identifier (gid) associated with your Asana Project to only return data mapped under the specified project. Project IDs can be found in the URL of your project's Overview page. This will be the numbers directly after /0/.
Connect Using OAuth Authentication
You must use OAuth to authenticate with Asana. OAuth requires the authenticating user to interact with Asana using the browser. See the "Getting Started" chapter of the help documentation for a guide to using OAuth.
- Drop a TFDQuery object onto the form and set the properties below:
- Connection - Set this property to the TFDConnection object, if this object is not already specified.
- SQL - Click the button in the SQL property and enter a query.
- Active - Set this property to true.
- Drop a TDataSource object onto the form and set the following property:
- DataSet - In the menu for this property, select the name of the TFDQuery object.
- Drop a TDBGrid control onto the form and set the following property:
- DataSource - Select the name of the TDataSource.
Drop a TFDGUIxWaitCursor onto the form. This is required to avoid a run-time error.
You now have an executable application that displays the results of the SQL Query set in the TFDQuery object.
