C++

FireDAC & ODBC for Paradox and dBase tables.

I continue to get customer requests for options to migrate legacy RAD Studio, Delphi or C++ Builder applications using the Borland Database Engine (BDE) with Paradox and/or dBase files. With the current versions of RAD Studio, you can use theFireDAC ODBC bridge driver to get to Paradox and dBase tables. This is important if you want to…
Read more
C++

Visualize JSON using TTreeView

Author: h.mohri I tried a program that reads a JSON file in C++Builder VCL and displays it in TTreeView component. This project file is open to public from github. github.com/mojeld https://www.microsoft.com/store/productid/9PLPHK05PJF7 Place two…
C++

May 2017 Roadmap Commentary from Product Management

We just published the May 2017 Delphi, C++Builder and RAD Studio roadmap which we’re really excited about. In our roadmap, you can find the key features that we planned for calendar year 2017/2018. The plans are aligned with Embarcadero’s fiscal year which starts April…
C++DelphiRAD Studio

Starting Delphi Or C++ Builder Results In Product Or License Validation Error

“Q. I’ve installed and registered C++ Builder or Delphi, yet when it starts I am brought to a web page with the error “Product or License Validation Error”. How can I fix this? By far the most common cause for this error is having files or applications not provided by Embarcadero that are copied into the bin folder below where RAD Studio is installed. Only files provided by…
Read more
C++

New in 10.2: MariaDB Support

Author: Pawe Gowacki One of the biggest new RAD Studio 10.2 Tokyo database features is support for MariaDB open-source relational database. MariaDB is one of the most popular open-source SQL databases. It is a fork from MySQL database, after it has been acquired by Oracle, the original creators of MySQL, started to work on MariaDB, which is highly compatible, some say 95%, with MySQL. Consequently…
Read more
C++

How to make RESTful WebBroker using C++Builder

Author: Andrea L59044 I used FireDAC because I wanted to make a DB connection to MySQL DB. Resource and suffix can be obtained with Request->PathInfo. So decomposePathInfointostd::vector<UnicodeString>and put it in. //// std::vector<UnicodeString> __fastcall TWebModule1::path_to_vector(String path_) { std::vector<UnicodeString>…
Read more