C++ wrapper for SQLite3 API - alternatives for sqlite3pp [duplicate] - c++

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
What is a good OO C++ wrapper for sqlite
I'm looking for C++ wrappers for SQLite3 API. So far, I only found sqlite3pp. It seems quite up-to-date, however, before settling with that I wanted to see if there are any alternatives. Do you guys know any? Thanks in advance!

I don't know why I can't find the Wiki linked from the SQLite homepage anymore. But it lists lots of C++ wrappers: http://www.sqlite.org/cvstrac/wiki?p=SqliteWrappers

Related

Calling a .net function from C++ [duplicate]

This question already has answers here:
How do I call a .NET assembly from C/C++?
(9 answers)
Closed 8 years ago.
I want to use this function to zip up a folder from a C++ console application. No examples are given in the article of how to use the function from C++, just C# or VB, and I can't find any other code samples anywhere.
The article doesn't really even clarify whether the function is available in C++. Is this function supported in C++? And if so, how do I call it?
Thanks.
This doesn't answer your specific question of calling that .NET method you requested, but, if you want to compress some files using native C++, look at using Zlib and there is a contribution app called minizip which you can use for opening / creating zip archives.

Reflection in C++ [duplicate]

This question already has answers here:
Why does C++ not have reflection?
(15 answers)
Closed 9 years ago.
I am currently porting a game from Cocos2d written in ObjectiveC to Cocos2d-x in C++. Now the objective C guys have used Reflection to populate modal classes from a json object. Is the same possible in C++ Can we use reflection in C++ ?
Kind Regards
As mentioned in the comments, C++ has no reflection.
The default solution is to register all the symbols that you need in an associative array, like unordered_map. Here are examples of that.

Could somebody recommend a book about development of portable C/C++ code? [duplicate]

This question already has an answer here:
Closed 11 years ago.
Possible Duplicate:
The Definitive C++ Book Guide and List
I am faced with the problem of portable code development (C or C++).
Could somebody advise me which book could help in this question?
Edited:
Actually I don't know the types of platforms. I was asked to write a simple program. This program must be portable. I am not expert in this question. I don't understand what it means and what should I do.
Edited
Here is an article devoted to this problem:
http://www.feyrer.de/PGC/Fighting_the_Lemmings.pdf
As I understood, the problem is real.
I'd like to research this question before writing my program.
How 'portable' is portable? DO you mean just Windows/Linux or do you mean it must also port to an 8051 uProc?
The C standard library and C++ are pretty much well supported everywhere. Some C++11 features aren't implemented on all compilers - but the common ones are.
The tricky part comes when you want to talk to anything in the OS or hardware - at which point it might be worth just using something like Qt or WxWidgets - or sticking to Boost.

Is there something like ANTS Performance Profiler but for C++? [duplicate]

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
Profiler for Visual Studio 2008, C++?
Hi
Are there any profilers for C++ ??
I need something which would investigate weak points of my application - by weak I mean not optimalized. Usualy I do this using ANTS Performance Profiler but this time my application is written in c++ and I don't know if there are any tools for this task.
Does this Help?
If you want something simple but effective, there's this.

Good coding guidelines tool for C++? [duplicate]

This question already has answers here:
Closed 13 years ago.
Possible Duplicate:
What tools exist for comparing C++ code to coding guidelines?
Can any one suggest any good coding guidelines tool for C++ which must be configurable according to specific requirements?
I've always found the Google C++ Style Guide to be a good one.