C++

Convert CSV file to TFDMemTable format JSON file.

Author: h.mohri   Convert from CSV file to “JSON file” of “TFDMemTable format”. This program uses C++Builder 10.2 Tokyo Release 1. include #include #include #include #include #include #include #include #include #include #include #include #include #include code struct _Tcsv_to_memtable { std::mutex mx_; std::vector vth_; std::unique_ptr…
Read more
C++

Try condition_variable using C++Builder(C++11).

Author: h.mohri std::condition_variable is a class for waiting for thread execution until the condition is satisfied.Used in combination with std::mutex. I tried the wait() function in std::condition_variable.This is combined with std::unique_lock. I thought of the…
Delphi

Try Delphi on Amazon Linux.

Author: h.mohri I tried Delphi on Amazon Linux. Amazon Linux is Linux that exists only in the instance of EC2(AWS). “Free tier eligible” can be used.   [Create an instance.] Select Amazon Linux from EC 2 and create a new instance. It is possible to connect with SSH in…
News

FireDAC and Microsoft Azure SQL Database

I’ve started to get requests to use FireDAC with Cloud Databases, like SQL Azure.  The question whether or not to put your business data in the cloud is getting easier and easier these days and a lot of that is thanks to Microsoft’s investment in Microsoft Azure.
Delphi

How to connect to Oracle DB from Ubuntu Linux.

Author: h.mohri   At this point, Instant Client configuration is complete. Finally, “./PAServer-19.0/paserver” is started up and ready.     [Create a new project.] In Delphi IDE side, create a new project. Web Server Application, check Linux. I chose “stand-alone…
Delphi

Hello Delphi and VCL! Hello community!

Author: Bogdan Polak BSC Hello This is my first blog entry. I’d like focus here on software architecture in Delphi world. Why do Delphi developers need architectural patterns? Do they need it? In my opinion, they do not only need it, but they use it constantly. In my…