testlibpq4.cc

来自「关系型数据库 Postgresql 6.5.2」· CC 代码 · 共 59 行

CC
59
字号
/* * testlibpq4.cc * 	Test of the asynchronous notification interface *   populate a test database with the following (use testlibpq4.sql):CREATE TABLE TBL1 (i int4);CREATE TABLE TBL2 (i int4);CREATE RULE r1 AS ON INSERT TO TBL1 DO [INSERT INTO TBL2 values (new.i); NOTIFY TBL2]; * Then start up this program * After the program has begun, doINSERT INTO TBL1 values (10); * * */#include <iostream.h>#include <libpq++.H>#include <stdlib.h>main(){  // Begin, by connecting to the backend using hardwired constants  // and a test database created by the user prior to the invokation  // of this test program.  char* dbName = "dbname=template1";  PgDatabase data(dbName);  // Check to see that the backend connection was successfully made  if ( data.ConnectionBad() ) {    cerr << "Connection to database '" << dbName << "' failed." << endl         << data.ErrorMessage() << endl;    exit(1);  }  // Listen to a table  if ( !data.ExecCommandOk("LISTEN TBL2") ) {    cerr << "LISTEN command failed" << endl;    exit(1);  }  // Test asynchronous notification  while (1) {      // check for asynchronous returns      PGnotify* notify = data.Notifies();      if (notify) {	  cerr << "ASYNC NOTIFY of '" << notify->relname 	       << "' from backend pid '" << notify->be_pid 	       << "' received" << endl;	  free(notify);	  break;      }  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?