Compiling C++ code by using g++ in Ubuntu
This article aim to share a little bit of knowledge on how to compile c++ code by using gcc compiler. In case you never experience how to compile c++ code in linux environment, this article will guide...
View ArticleInstalling SQLite in Ubuntu
Installing SQLite in Ubuntu is pretty simple and all you have to do is using the following command to download and install the package. $ sudo apt-get install sqlite3 libsqlite3-dev Once it’s...
View ArticleC++ SQLite Example in Linux
This example will demonstrate how you can write a C++ program to utilize SQLite as your program database file in Linux environment. I am using Ubuntu in this demonstration. If you are new to C++ &...
View ArticleConnecting Ubuntu Server to Dropbox Account
I was looking for a solution to share some of my files in my Ubuntu server to others and while thinking of “cloud computing” at that time, I am thinking if i can try to share my files by linking my...
View ArticleC++ PostgreSQL Example in Linux
In this tutorial, i’ll demonstrate an example on how to connect to PostgreSQL database using gcc in linux. Also, i’ll demonstrate some basic SQL execution in the C++ example so that it give better...
View Article