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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ftds_lang.cpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 20:36:17  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: ftds_lang.cpp,v 1000.0 2003/10/29 20:36:17 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 language 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_LangCmd* lcmd =
  48.             con->LangCmd("select name, crdate from sysdatabases");
  49.         lcmd->Send();
  50.         while (lcmd->HasMoreResults()) {
  51.             CDB_Result* r = lcmd->Result();
  52.             if (!r)
  53.                 continue;
  54.             cout
  55.                 << r->ItemName(0) << " ttt"
  56.                 << r->ItemName(1) << endl
  57.                 << "-----------------------------------------------------" 
  58.                 << endl;
  59.             while (r->Fetch()) {
  60.                 CDB_LongChar dbname(240);
  61.                 CDB_DateTime crdate;
  62.                 r->GetItem(&dbname);
  63.                 r->GetItem(&crdate);
  64.                 cout
  65.                     << dbname.Value() << ' '
  66.                     << crdate.Value().AsString("M/D/Y h:m") << endl;
  67.             }
  68.             delete r;
  69.         }
  70.         delete lcmd;
  71.         delete con;
  72.     } catch (CDB_Exception& e) {
  73.         CDB_UserHandler_Stream myExHandler(&cerr);
  74.         myExHandler.HandleIt(&e);
  75.         return 1;
  76.     }
  77.     return 0;
  78. }
  79. /*
  80.  * ===========================================================================
  81.  * $Log: ftds_lang.cpp,v $
  82.  * Revision 1000.0  2003/10/29 20:36:17  gouriano
  83.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.4
  84.  *
  85.  * Revision 1.4  2003/10/10 14:03:59  ucko
  86.  * Switch MSSQL server to ms_dev2, since dev1 seems to be down.
  87.  *
  88.  * Revision 1.3  2003/08/05 19:23:45  vakatov
  89.  * MSSQL2 --> MS_DEV1
  90.  *
  91.  * Revision 1.2  2003/04/30 18:22:10  soussov
  92.  * changing datatype for dbname to CDB_LongChar
  93.  *
  94.  * Revision 1.1  2002/12/05 22:47:02  soussov
  95.  * Initial revision
  96.  *
  97.  * Revision 1.3  2002/04/25 20:57:08  soussov
  98.  * makes it plain
  99.  *
  100.  * Revision 1.2  2001/11/06 18:00:03  lavr
  101.  * Formatted uniformly as the rest of the library
  102.  *
  103.  * Revision 1.1  2001/10/25 00:46:44  vakatov
  104.  * Initial revision
  105.  *
  106.  * ===========================================================================
  107.  */