![]() |
VOOZH | about |
Embarcadero RAD Studio provides a development environment for Delphi and C++Builder applications. With the CData ODBC Driver for Discourse, you gain access to live Discourse data within RAD Studio, abstracting the data into tables, views, and stored procedures that can be used to both retrieve Discourse data. This article will walk through connecting to Discourse using the Data Explorer.
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.
The Discourse API uses API Key authentication.
Discourse requires API Key and Username for authentication. API Keys are generated in the Discourse Admin panel under the API section. You can create user-specific API keys or all-users API keys. Once you have obtained the API Key, set it along with the Domain and Username in the ProfileSettings connection property.
Profile=C:\profiles\Discourse.apip;ProfileSettings='Domain=forum.example.com;APIKey=your_api_key;Username=your_username;'AuthScheme=APIKey;
You can create a simple application for displaying Discourse data by utilizing the CData FireDAC Components for Discourse and a new VCL Forms Application:
Create a new VCL Forms application and drag a view (for example: Backups) onto the form.
๐ Placing the View on the Form. (Salesforce is shown.)Right-click on the object, bind visually, and link everything (*) to a new control (TStringGrid).
๐ Visually Binding the View. (Salesforce is shown.)Arrange the TStringGrid on the form and run the application to see the Backups data.
๐ The View data on a Form. (Salesforce is shown.)Below you can find other articles for using the CData ODBC Driver with RAD Studio, Delphi, and C++ Builder.
Connect to live data from Discourse with the API Driver
Connect to Discourse