Are there Oracle generators for stored procedures for C ++?

I spent more and more time creating DB Wrappers for Oracle access. This seems to be a fairly general procedure, and I was wondering if there are code generators that generate access routes to Oracle PL / SQL stored procedures in C ++?

I am looking for a custom generation tool that could manage the connection and handle multiple threads if necessary. I know OCI / OCCI and the Oracle C ++ extension, but I'm looking for a clean self-contained C++ accessor generation tool .

Any advice is appreciated.

Thanks!

+4
source share
2 answers

We use SQLAPI (http://www.sqlapi.com/) for all our C ++ developments with Oracle. I think this is a more efficient shell for OCI (although, as another person pointed out, OCCI is good). Another advantage of SQLAPI is that it also supports other database platforms. We also use it for MySQL, and having this level of abstraction between our applications and database layers certainly simplifies some things.

+1
source

All Articles