ndbapi_example2.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. //
  14. //  ndbapi_example2.cpp: Using asynchronous transactions in NDB API
  15. //
  16. //  Execute ndbapi_example1 to create the table "MYTABLENAME"
  17. //  before executing this program.
  18. // 
  19. //  Correct output from this program is:
  20. //
  21. //  Successful insert.
  22. //  Successful insert.
  23. #include <NdbApi.hpp>
  24. // Used for cout
  25. #include <iostream>
  26. #define APIERROR(error) 
  27.   { std::cout << "Error in " << __FILE__ << ", line:" << __LINE__ << ", code:" 
  28.               << error.code << ", msg: " << error.message << "." << std::endl; 
  29.     exit(-1); }
  30. static void callback(int result, NdbConnection* NdbObject, void* aObject);
  31. int main()
  32. {
  33.   ndb_init();
  34.   Ndb* myNdb = new Ndb( "TEST_DB_2" );  // Object representing the database
  35.   NdbConnection*  myNdbConnection[2];   // For transactions
  36.   NdbOperation*   myNdbOperation;       // For operations
  37.   
  38.   /*******************************************
  39.    * Initialize NDB and wait until its ready *
  40.    *******************************************/
  41.   if (myNdb->init(2) == -1) {          // Want two parallel insert transactions
  42.     APIERROR(myNdb->getNdbError());
  43.     exit(-1);
  44.   }
  45.   if (myNdb->waitUntilReady(30) != 0) {
  46.     std::cout << "NDB was not ready within 30 secs." << std::endl;
  47.     exit(-1);
  48.   }
  49.   /******************************************************
  50.    * Insert (we do two insert transactions in parallel) *
  51.    ******************************************************/
  52.   for (int i = 0; i < 2; i++) {
  53.     myNdbConnection[i] = myNdb->startTransaction();
  54.     if (myNdbConnection[i] == NULL) APIERROR(myNdb->getNdbError());
  55.     
  56.     myNdbOperation = myNdbConnection[i]->getNdbOperation("MYTABLENAME");
  57.     // Error check. If error, then maybe table MYTABLENAME is not in database
  58.     if (myNdbOperation == NULL) APIERROR(myNdbConnection[i]->getNdbError());
  59.     
  60.     myNdbOperation->insertTuple();
  61.     myNdbOperation->equal("ATTR1", 20 + i);
  62.     myNdbOperation->setValue("ATTR2", 20 + i);
  63.     
  64.     // Prepare transaction (the transaction is NOT yet sent to NDB)
  65.     myNdbConnection[i]->executeAsynchPrepare(Commit, &callback, NULL);
  66.   }
  67.   // Send all transactions to NDB 
  68.   myNdb->sendPreparedTransactions(0);
  69.   
  70.   // Poll all transactions
  71.   myNdb->pollNdb(3000, 2);
  72.   
  73.   // Close all transactions
  74.   for (int i = 0; i < 2; i++) 
  75.     myNdb->closeTransaction(myNdbConnection[i]);
  76.   delete myNdb;
  77. }
  78. /*
  79.  *   callback : This is called when the transaction is polled
  80.  *              
  81.  *   (This function must have three arguments: 
  82.  *   - The result of the transaction, 
  83.  *   - The NdbConnection object, and 
  84.  *   - A pointer to an arbitrary object.)
  85.  */
  86. static void
  87. callback(int result, NdbConnection* myTrans, void* aObject)
  88. {
  89.   if (result == -1) {
  90.     std::cout << "Poll error: " << std::endl; 
  91.     APIERROR(myTrans->getNdbError());
  92.   } else {
  93.     std::cout << "Successful insert." << std::endl;
  94.   }
  95. }