the_candyman
the_candyman

Reputation: 1663

Small database management in C++

I'm planning to develop a C++ application which must access (r/w) to a small database. Some time ago I've written some code for accessing a formatted text file and I used this as database. But now I'm wondering if there exists some light weight library for c++ (linux box) which let me deal easily and with good performances with small databases.

I would like some suggestion.

Upvotes: 1

Views: 2086

Answers (1)

Juarrow
Juarrow

Reputation: 2384

I am not 100% sure whether this is as "easy" as you wish, but in my opinion SQLite (http://www.sqlite.org/) is kind of an easy-to-use solution i used to use a while ago... hope this helps!

Upvotes: 10

Related Questions