197ad92ef8
APQ is a database interface library written in Ada95. This is the base library, but it is not useful without a driver. There are three drivers available for PostgreSQL, MySQL, and ODBC in separate ports. Some features: * Thick binding * Strong typing support * Full BLOB support (PGSQL) * High performance BLOB I/O via streams * Full support for NULL Values * Fully portable (database neutral) code possible * Four levels of debug tracing WWW: https://bitbucket.org/kowframework/apq
12 lines
298 B
C
12 lines
298 B
C
--- src/notices.c.orig 2012-04-26 16:10:18.000000000 -0500
|
|
+++ src/notices.c
|
|
@@ -31,6 +31,9 @@
|
|
#include <stdio.h>
|
|
#include <libpq-fe.h>
|
|
|
|
+void notice_install (PGconn *, void *);
|
|
+void notice_uninstall (PGconn *);
|
|
+
|
|
/*
|
|
* Connection_Notify is an Ada procedure using C calling convention :
|
|
*/
|