database engine

Discussion about everything. New games, 3d math, development tips...
Post Reply
Lil Margin
Posts: 212
Joined: Sun Jul 19, 2009 4:24 am
Location: Netherlands Antilles, Curacao

database engine

Post by Lil Margin »

Do you guys know any good c++ database engine?

i searched the net but only got mysql ones :/
loki1985
Posts: 214
Joined: Thu Mar 31, 2005 2:36 pm

Post by loki1985 »

what do you mean with c++... written in c++, interfaceable with c++, embeddable with c++ ?

if you are looking for embedding one, and need SQL, SQLite is the way to go.
Lil Margin
Posts: 212
Joined: Sun Jul 19, 2009 4:24 am
Location: Netherlands Antilles, Curacao

Post by Lil Margin »

With c++ i mean written in c++ but i DO NOT NEED sql.
kazymjir
Posts: 727
Joined: Sat Feb 20, 2010 4:05 pm
Location: Munich, Bayern

Post by kazymjir »

As Loki said, SQLite.

http://www.sqlite.org/capi3.html
loki1985
Posts: 214
Joined: Thu Mar 31, 2005 2:36 pm

Post by loki1985 »

Lil Margin wrote:With c++ i mean written in c++ but i DO NOT NEED sql.
for embedding or not, that is the important question here....

if yes, i think berkeleyDB might work.

btw: SQL is a language, MySQL a software. sounds like you mix the two concepts ;)
Lil Margin
Posts: 212
Joined: Sun Jul 19, 2009 4:24 am
Location: Netherlands Antilles, Curacao

Post by Lil Margin »

lol yeah i did xD
ill check berkeleyDB
Post Reply