I am writing a database application in C linux. Currently I work on mysql but later we might migrate to postgres. Therefore my boss has asked my to prepare the application to be able to use either of the databases(mysql or postgres).

Is there a free api which I can use for this purpose? Or any suggestion on how best I can do this?

link|improve this question

72% accept rate
feedback

2 Answers

The official answer to that is ODBC.

If you don't like that (and let's face it, no one really does), Qt has a database access module, QtSql. Obviously, this will require you to make heavy use of Qt in your application.

link|improve this answer
feedback

If you can find drivers for your platform, ODBC was supposedly meant to provide exactly this: a platform-independent way to talk to databases.

(I say supposedly because in my experience, ODBC is such a mess that hooking up to an ODBC driver once turned out to be more difficult than just writing the code three times for three different databases.)

link|improve this answer
actually there is sqlapi++ but it is not free and not in C. – rahman Aug 15 '11 at 6:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.