ftds_sp_who.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ftds_sp_who.cpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 20:36:23  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: ftds_sp_who.cpp,v 1000.0 2003/10/29 20:36:23 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE                          
  13.  *               National Center for Biotechnology Information
  14.  *                                                                          
  15.  *  This software/database is a "United States Government Work" under the   
  16.  *  terms of the United States Copyright Act.  It was written as part of    
  17.  *  the author's official duties as a United States Government employee and 
  18.  *  thus cannot be copyrighted.  This software/database is freely available 
  19.  *  to the public for use. The National Library of Medicine and the U.S.    
  20.  *  Government have not placed any restriction on its use or reproduction.  
  21.  *                                                                          
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy  
  23.  *  and reliability of the software and data, the NLM and the U.S.          
  24.  *  Government do not and cannot warrant the performance or results that    
  25.  *  may be obtained by using this software or data. The NLM and the U.S.    
  26.  *  Government disclaim all warranties, express or implied, including       
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.                                                                
  29.  *                                                                          
  30.  *  Please cite the author in any work or product based on this material.   
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  Vladimir Soussov
  35.  *
  36.  * This simple program illustrates how to use the RPC command
  37.  *
  38.  */
  39. #include <dbapi/driver/exception.hpp>
  40. #include <dbapi/driver/ftds/interfaces.hpp>
  41. USING_NCBI_SCOPE;
  42. int main()
  43. {
  44.     try {
  45.         CTDSContext my_context;
  46.         CDB_Connection* con = my_context.Connect("MS_DEV2", "anyone", "allowed", 0);
  47.         CDB_RPCCmd* rcmd = con->RPC("sp_who", 0);
  48.         rcmd->Send();
  49.         while (rcmd->HasMoreResults()) {
  50.             CDB_Result* r = rcmd->Result();
  51.             if (!r)
  52.                 continue;
  53.             
  54.             if (r->ResultType() == eDB_RowResult) {
  55.                 while (r->Fetch()) {
  56.                     for (unsigned int j = 0;  j < r->NofItems(); j++) {
  57.                         EDB_Type rt = r->ItemDataType(j);
  58.                         if (rt == eDB_Char || rt == eDB_VarChar) {
  59.                             CDB_VarChar r_vc;
  60.                             r->GetItem(&r_vc);
  61.                             cout << r->ItemName(j) << ": "
  62.                                  << (r_vc.IsNULL()? "" : r_vc.Value()) << " t";
  63.                         } else if (rt == eDB_Int ||
  64.                                    rt == eDB_SmallInt ||
  65.                                rt == eDB_TinyInt) {
  66.                             CDB_Int r_in;
  67.                             r->GetItem(&r_in);
  68.                             cout << r->ItemName(j) << ": " << r_in.Value() << ' ';
  69.                         } else
  70.                             r->SkipItem();
  71.                     }
  72.                     cout << endl;
  73.                 }
  74.                 delete r;
  75.             }
  76.         }
  77.         delete rcmd;
  78.         delete con;
  79.     } catch (CDB_Exception& e) {
  80.         CDB_UserHandler_Stream myExHandler(&cerr);
  81.         
  82.         myExHandler.HandleIt(&e);
  83.         return 1;
  84.     }
  85.     return 0;
  86. }
  87. /*
  88.  * ===========================================================================
  89.  * $Log: ftds_sp_who.cpp,v $
  90.  * Revision 1000.0  2003/10/29 20:36:23  gouriano
  91.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.3
  92.  *
  93.  * Revision 1.3  2003/10/10 14:03:59  ucko
  94.  * Switch MSSQL server to ms_dev2, since dev1 seems to be down.
  95.  *
  96.  * Revision 1.2  2003/08/05 19:23:45  vakatov
  97.  * MSSQL2 --> MS_DEV1
  98.  *
  99.  * Revision 1.1  2002/12/05 22:47:03  soussov
  100.  * Initial revision
  101.  *
  102.  * Revision 1.3  2002/04/25 20:57:08  soussov
  103.  * makes it plain
  104.  *
  105.  * Revision 1.2  2001/11/06 18:00:04  lavr
  106.  * Formatted uniformly as the rest of the library
  107.  *
  108.  * Revision 1.1  2001/10/25 00:46:44  vakatov
  109.  * Initial revision
  110.  *
  111.  * ===========================================================================
  112.  */