In this post we would like to give a very simple example to connect to a MySQL Database in C++ Builder with FireDAC Component which comes with RAD Studio officially.
MySQL is one of the world’s most popular open source database and it is very easy and very useful touse small to large scale databases. MySQL has MySQL Service and different editions ( Enterprise, Standard, Classic…
If you are looking to a way to reliably determine whether C++ code is being compiled in 32 bits or 64 bits there is way to check in C++ code.
For a cross platform compilation (cross compiler environments like FireMonkey framework in C++ Builder) there is no single…
Clipboard, also called as the paste buffer, is is a buffer which operating systems provide to copy things (texts, bitmaps, tables etc.) for short term and transfer within and between application programs. The clipboard is usually temporary and unnamed, and its contents…
Learn To Use PostgreSQL Database Connections With C++
March 5, 2021
PostgreSQL is another popular database which is powerful, open source object-relational database system with over 30 years of active development that has earned it a strong reputation for reliability, feature robustness, and performance You caninstallandusePostgreSQL through theofficial documentation. They have also support with PostgreSQL Community, it provides many…
Learn C++ with Heterogeneous Programming in C++ with SYCL 2020 by Michael Wong and Gordon Brown (CPPCon 2020) Video
March 4, 2021
To provide higher performance and more computer power, computer system architecture trends continue to improve as it supports an increasing demand for high-performance computing domains. This video presents the current state of the SYCL ecosystem, including the supported…
Learn To Modernize Appearance Of Multi-Platform C++ Builder FMX Applications By Using Styles
March 3, 2021
Syles are sets of graphical details that define the look and feel of a application visually and they are one of most beautiful and useful UI feature of RAD Studio, that makes your UI elements skinned with professionally designed with different Styles. Official Styles are…
Sylesare sets of graphical details that define the look and feel of an application visually and they are one of the most beautiful and useful UI features ofRAD Studio, that makes your UI elements skinned with professionally designed with different Styles.
Learn To Use MySQL Database Connections On Windows With MyDAC Components
February 28, 2021
In this post we would like to give a very simple example to connect to a MySQL database in C++ Builder with MyDAC Component.MySQL is one of the world’s most popular open source database and it is very easy and very useful touse small to large scale databases.
Handle Based File Operations In C++ Builder
February 27, 2021
Handle based file read and write methods can be used in Modern C++, In C++ Builder. In Modern C++ we highly recommend you to use Modern File Operations to support your application on all platforms and for the some benefits of using these methods like supporting worldwide languages by using UnicdeStrings etc. If you dont need these, you can easily use old methods in C++ Builder with GUIs. You can…