testlibpq4.cc
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*
  2.  * testlibpq4.cc
  3.  *  Test of the asynchronous notification interface
  4.  *
  5.    populate a test database with the following (use testlibpq4.sql):
  6. CREATE TABLE TBL1 (i int4);
  7. CREATE TABLE TBL2 (i int4);
  8. CREATE RULE r1 AS ON INSERT TO TBL1 DO [INSERT INTO TBL2 values (new.i); NOTIFY TBL2];
  9.  * Then start up this program
  10.  * After the program has begun, do
  11. INSERT INTO TBL1 values (10);
  12.  *
  13.  *
  14.  */
  15. #include <iostream.h>
  16. #include <libpq++.H>
  17. #include <stdlib.h>
  18. main()
  19. {
  20.   // Begin, by connecting to the backend using hardwired constants
  21.   // and a test database created by the user prior to the invokation
  22.   // of this test program.
  23.   char* dbName = "dbname=template1";
  24.   PgDatabase data(dbName);
  25.   // Check to see that the backend connection was successfully made
  26.   if ( data.ConnectionBad() ) {
  27.     cerr << "Connection to database '" << dbName << "' failed." << endl
  28.          << data.ErrorMessage() << endl;
  29.     exit(1);
  30.   }
  31.   // Listen to a table
  32.   if ( !data.ExecCommandOk("LISTEN TBL2") ) {
  33.     cerr << "LISTEN command failed" << endl;
  34.     exit(1);
  35.   }
  36.   // Test asynchronous notification
  37.   while (1) {
  38.       // check for asynchronous returns
  39.       PGnotify* notify = data.Notifies();
  40.       if (notify) {
  41.   cerr << "ASYNC NOTIFY of '" << notify->relname 
  42.        << "' from backend pid '" << notify->be_pid 
  43.        << "' received" << endl;
  44.   free(notify);
  45.   break;
  46.       }
  47.   }
  48. }