Skip to content Skip to sidebar Skip to footer

Prepared Statements In Libdbi

I want to use libdbi to make an application database-agnostic. I would like to use prepared statements. How can I use prepared statements with libdbi? All the examples I saw use no

Solution 1:

Unfortunately, libdbi does NOT support prepared statements. Source: libdbi documentation at http://libdbi.sourceforge.net/docs/programmers-guide Also read this thread at syslog-ng: http://marc.info/?t=129555478500003

If you don't mind C++, SOCI might be an alternative for you: http://soci.sourceforge.net

Post a Comment for "Prepared Statements In Libdbi"