Find your piece of code

Viewing 1 to 4 of 4 items

Using blocking socket connection in C++ (server & client)

In this tutorial I am going to teach you how to use blocking socket connection in C++.  When you run function, the program “blocks” until the operation is complete. For example, when you call function to connect, control isn’t returned to your program until someone connects or an error occurs. The same is with sending and recieving  Full Article…

6

How to connect MySQL and C++

If you want to empower your C++ app’s with powerfull database system MySQL this tutorial is for you. By default it’s not so easy and requires some additional files, libraries and actions to make it happen.  This guide is written for Visual Studio IDE.  So here is step by step guide how to connect MySQL database with C++.  Full Article…

4