Recommended C++ Database Abstraction Layers [closed] - c++

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
What Database Abstraction Layer libraries would you recommend for use with C++? I am more interested in solutions for non-Windows platforms, but that is personal preference. Which libraries would you recommend and why?

Take a look at SOCI
Apparently, it is a serious candidate for Boost.

Personally, I like the database template library.

I'd recommend using an ODBC library.
Here are the first two when I googled:
libodbc++
sqlapi++

Related

What are the good concurrency libaries in C++? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am using Intel's threading building block library and it seems pretty good. But because of some licensing concerns, I may not be using it. So, what are other good C++ concurrency libraries?
It depends on the operating system, platform and compiler that you need to support.
Compilers compliant with the C++11 standard already have concurrency support.
Other options are the Boost or Qt libraries.
Another option, for simple multithreading, is OpenMP.
Have a look at Boost::Concurrent. Looks like you're after Boost::Lockfree which has queues etc.

arping in c++ on linux [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I was wondering if anyone knows of a arping api or wrapper written in c++ not c ? I have looked at the libpcap library but I want a c++ alternative if possible
http://www.tcpdump.org/pcap3_man.html
Programmatic use of ARP
Thanks
Libpcap's APIs should be callable from C++, at least in newer versions that have extern "C" wrappers in the header files.
This looks like it will work http://libpcappp.sourceforge.net/ libpcap++

Is there an alternative to Pidgin, but with less restrictive licensing? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
Recently came across pidgin. Its great, and does what I want, but I am not too keen on the GPL license. Other any alternatives, with less restrictive licenses?
I would prefer the library to be C or C++, as I am most familiar with those languages, but a an IM library implemented in python would be interesting too.
Take a look at kde's kopete. The chat client itself is still GPL but it's underlying library libkopete is LGPL. So you could link with it pretty freely.
Twisted Words

XML-RPC library for C++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
What libraries are available for writing xml-rpc clients in native C++ or C?
You might want to check out either xmlrpc-c or xmlrpc++.
I found a list of xml-rpc implementations in many different languages. Hopefully this list will be useful to others.

Open Source C++ Data Visualization Library [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
We want to include data visualization in our desktop GUI (mostly timelines and graphs; clickable, draggable). We want to restrict to open-source, non-copyleft C++ libraries that allow commercial use and are portable across many platforms. Which library can I use? Our GUI is based on WxWidgets.
there is VTK.
And if data visualization is your thing, have a look at opendx too.
I think this question would be easier to answer if you also stated which other GUI components you use. Perhaps that limits the choice of available libraries. Since you're C++ and cross-platform, maybe wxWindows? Would be good not to have to guess.